am b00af8f1: Merge "AndroidKeyStore: enforce keys have no encoding"

* commit 'b00af8f14b45e0c163cdd8d1998f2bd1714e54e6':
  AndroidKeyStore: enforce keys have no encoding
diff --git a/CtsTestCaseList.mk b/CtsTestCaseList.mk
index dab7b67..dbf82c9 100644
--- a/CtsTestCaseList.mk
+++ b/CtsTestCaseList.mk
@@ -39,6 +39,7 @@
     CtsDeviceAdmin \
     CtsMonkeyApp \
     CtsMonkeyApp2 \
+    CtsSampleDeviceApp \
     CtsSomeAccessibilityServices \
     CtsTestStubs \
     SignatureTest \
@@ -82,7 +83,6 @@
     CtsDreamsTestCases \
     CtsDrmTestCases \
     CtsEffectTestCases \
-    CtsExampleTestCases \
     CtsGestureTestCases \
     CtsGraphicsTestCases \
     CtsGraphics2TestCases \
@@ -107,6 +107,7 @@
     CtsRenderscriptTestCases \
     CtsRenderscriptGraphicsTestCases \
     CtsRsCppTestCases \
+    CtsSampleDeviceTestCases \
     CtsSaxTestCases \
     CtsSecurityTestCases \
     CtsSpeechTestCases \
@@ -124,7 +125,6 @@
 	$(cts_support_packages) \
 	$(cts_test_packages)
 
-
 # Host side only tests
 cts_host_libraries := \
     CtsHostUi \
@@ -132,9 +132,9 @@
     CtsAdbTests \
     CtsAppSecurityTests \
     CtsMonkeyTestCases \
+    CtsSampleHostTestCases \
     CtsUsbTests
 
-
 # Native test executables that need to have associated test XMLs.
 cts_native_exes := \
 	NativeMediaTest_SL \
diff --git a/apps/CtsVerifier/AndroidManifest.xml b/apps/CtsVerifier/AndroidManifest.xml
index 9a583ef..848c853 100644
--- a/apps/CtsVerifier/AndroidManifest.xml
+++ b/apps/CtsVerifier/AndroidManifest.xml
@@ -18,7 +18,7 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
       package="com.android.cts.verifier"
       android:versionCode="1"
-      android:versionName="4.4_r1">
+      android:versionName="4.4_r1.95">
 
     <!-- Using 10+ for more complete NFC support... -->
     <uses-sdk android:minSdkVersion="12"></uses-sdk>
@@ -208,6 +208,122 @@
                 android:label="@string/bt_device_picker"
                 android:configChanges="keyboardHidden|orientation|screenSize" />
 
+        <service android:name=".bluetooth.BleClientService"
+                android:label="@string/ble_client_service_name" />
+
+        <service android:name=".bluetooth.BleServerService"
+                android:label="ble_server_service_name" />
+
+        <activity android:name=".bluetooth.BleClientTestActivity"
+                android:label="@string/ble_client_test_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleClientConnectActivity"
+                android:label="@string/ble_client_connect_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BleClientTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleDiscoverServiceActivity"
+                android:label="@string/ble_discover_service_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BleClientTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleClientCharacteristicActivity"
+                android:label="@string/ble_client_characteristic_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BleClientTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleNotifyCharacteristicActivity"
+                android:label="@string/ble_notify_characteristic_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BleClientTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleClientDescriptorActivity"
+                android:label="@string/ble_client_descriptor_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BleClientTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleReliableWriteActivity"
+                android:label="@string/ble_reliable_write_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BleClientTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleReadRssiActivity"
+                android:label="@string/ble_read_rssi_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BleClientTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleClientDisconnectActivity"
+                android:label="@string/ble_client_disconnect_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BleClientTestActivity" />
+        </activity>
+
+        <activity android:name=".bluetooth.BleServerStartActivity"
+                android:label="@string/ble_server_start_name"
+                android:configChanges="keyboardHidden|orientation|screenSize">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/bt_le" />
+            <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" />
+        </activity>
+
         <activity android:name=".suid.SuidFilesActivity"
                 android:label="@string/suid_files"
                 android:configChanges="keyboardHidden|orientation|screenSize">
@@ -464,6 +580,39 @@
                        android:value="android.hardware.sensor.compass" />
         </activity-->
 
+        <activity android:name=".location.LocationModeOffTestActivity"
+                android:label="@string/location_mode_off_test">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/test_category_location" />
+        </activity>
+        <activity android:name=".location.LocationModeHighAccuracyTestActivity"
+                android:label="@string/location_mode_high_accuracy_test">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/test_category_location" />
+        </activity>
+        <activity android:name=".location.LocationModeBatterySavingTestActivity"
+                android:label="@string/location_mode_battery_saving_test">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/test_category_location" />
+        </activity>
+        <activity android:name=".location.LocationModeDeviceOnlyTestActivity"
+                android:label="@string/location_mode_device_only_test">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/test_category_location" />
+        </activity>
+
         <activity android:name=".camera.formats.CameraFormatsActivity"
                  android:label="@string/camera_format"
                  android:screenOrientation="landscape">
@@ -528,7 +677,7 @@
             </intent-filter>
             <meta-data android:name="test_category" android:value="@string/test_category_camera" />
             <meta-data android:name="test_required_features" android:value="android.hardware.sensor.gyroscope" />
-            <meta-data android:name="test_required_features" android:value="android.hardware.camera"/>
+            <meta-data android:name="test_required_features" android:value="android.hardware.camera.any"/>
         </activity>
         <activity
             android:name=".camera.fov.DetermineFovActivity"
@@ -656,6 +805,15 @@
             </intent-filter>
         </activity-alias>
 
+        <activity android:name=".sample.SampleTestActivity"
+                  android:label="@string/sample_framework_test">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.cts.intent.category.MANUAL_TEST" />
+            </intent-filter>
+            <meta-data android:name="test_category" android:value="@string/test_category_other" />
+        </activity>
+
         <activity android:name=".widget.WidgetTestActivity"
                 android:label="@string/widget_framework_test">
             <intent-filter>
diff --git a/apps/CtsVerifier/proguard.flags b/apps/CtsVerifier/proguard.flags
index dde9fde..7e6587a 100644
--- a/apps/CtsVerifier/proguard.flags
+++ b/apps/CtsVerifier/proguard.flags
@@ -6,5 +6,7 @@
     private <fields>;
 }
 
+-keepclasseswithmembers class * extends com.android.cts.verifier.location.LocationModeTestActivity
+
 -dontwarn android.hardware.Sensor
 -dontwarn java.util.concurrent.ConcurrentLinkedDeque
diff --git a/apps/CtsVerifier/res/layout/ble_button.xml b/apps/CtsVerifier/res/layout/ble_button.xml
new file mode 100644
index 0000000..6428fe2
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_button.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:padding="10dip"
+        >
+    <Button android:id="@+id/ble_button"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_centerInParent="true"
+            />
+
+    <include android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons"
+            />
+</RelativeLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/ble_client_connect.xml b/apps/CtsVerifier/res/layout/ble_client_connect.xml
new file mode 100644
index 0000000..54a0a99
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_client_connect.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:padding="10dip"
+        >
+
+    <LinearLayout android:orientation="horizontal"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_centerInParent="true"
+            >
+        <EditText android:id="@+id/ble_address"
+                android:layout_weight="1"
+                android:layout_width="0dp"
+                android:layout_height="wrap_content"
+                android:hint="@string/ble_address"
+                />
+        <Button android:id="@+id/ble_connect"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:text="@string/ble_connect"
+                />
+    </LinearLayout>
+
+    <include android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons"
+            />
+</RelativeLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/ble_client_read_write.xml b/apps/CtsVerifier/res/layout/ble_client_read_write.xml
new file mode 100644
index 0000000..7edba62
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_client_read_write.xml
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:padding="10dip"
+        >
+    <LinearLayout android:orientation="vertical"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_centerInParent="true"
+            >
+        <LinearLayout android:orientation="horizontal"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                >
+            <EditText android:id="@+id/write_text"
+                    android:layout_width="0dp"
+                    android:layout_weight="1"
+                    android:layout_height="wrap_content"
+                    android:hint="@string/ble_write_hint"
+                    android:padding="10dip"
+                    />
+            <Button android:id="@+id/ble_write"
+                    android:layout_height="wrap_content"
+                    android:layout_width="wrap_content"
+                    android:text="@string/ble_write"
+                    />
+        </LinearLayout>
+
+        <LinearLayout android:orientation="horizontal"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                >
+            <TextView android:id="@+id/read_text"
+                    android:layout_width="0dp"
+                    android:layout_weight="1"
+                    android:layout_height="wrap_content"
+                    android:hint="@string/ble_read_hint"
+                    android:padding="10dip"
+                    android:textSize="18sp"
+                    />
+            <Button android:id="@+id/ble_read"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/ble_read"
+                    />
+        </LinearLayout>
+    </LinearLayout>
+
+    <include android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons"
+            />
+</RelativeLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/ble_client_test.xml b/apps/CtsVerifier/res/layout/ble_client_test.xml
new file mode 100644
index 0000000..660abd5
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_client_test.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:padding="10dip"
+        >
+    <ListView android:id="@+id/ble_client_tests"
+            android:layout_height="fill_parent"
+            android:layout_width="match_parent"
+            android:padding="10dip"
+            />
+
+    <include android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons"
+            />
+</RelativeLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/ble_notify_characteristic.xml b/apps/CtsVerifier/res/layout/ble_notify_characteristic.xml
new file mode 100644
index 0000000..786918a
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_notify_characteristic.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:padding="10dip"
+        >
+    <RelativeLayout android:orientation="vertical"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_centerInParent="true"
+            >
+        <Button android:id="@+id/ble_notify"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_centerHorizontal="true"
+                android:text="@string/ble_begin_notification"
+                android:padding="10dip"
+                />
+        <TextView android:id="@+id/ble_notify_text"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_centerHorizontal="true"
+                android:layout_below="@id/ble_notify"
+                android:textSize="20sp"
+                android:padding="10dip"
+                />
+    </RelativeLayout>
+
+    <include android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons"
+            />
+</RelativeLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/ble_read_rssi.xml b/apps/CtsVerifier/res/layout/ble_read_rssi.xml
new file mode 100644
index 0000000..8aa3193
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_read_rssi.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:padding="10dip"
+        >
+    <RelativeLayout android:orientation="vertical"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_centerInParent="true"
+            >
+        <Button android:id="@+id/ble_read_rssi"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_centerHorizontal="true"
+                android:text="@string/ble_read_rssi"
+                android:padding="10dip"
+                />
+        <TextView android:id="@+id/ble_rssi_text"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_centerHorizontal="true"
+                android:layout_below="@id/ble_read_rssi"
+                android:textSize="20sp"
+                android:padding="10dip"
+                />
+    </RelativeLayout>
+
+    <include android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons"
+            />
+</RelativeLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/ble_reliable_write.xml b/apps/CtsVerifier/res/layout/ble_reliable_write.xml
new file mode 100644
index 0000000..7db78ff
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_reliable_write.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:padding="10dip"
+        >
+    <LinearLayout android:orientation="vertical"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_centerInParent="true"
+            >
+        <EditText android:id="@+id/write_text"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:hint="@string/ble_write_hint"
+                android:padding="5dip"
+                />
+        <LinearLayout android:orientation="horizontal"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                >
+            <Button android:id="@+id/ble_begin"
+                    android:layout_width="0dp"
+                    android:layout_height="wrap_content"
+                    android:layout_weight="1"
+                    android:text="@string/ble_begin_write"
+                    />
+            <Button android:id="@+id/ble_write"
+                    android:layout_width="0dp"
+                    android:layout_height="wrap_content"
+                    android:layout_weight="1"
+                    android:text="@string/ble_write"
+                    />
+            <Button android:id="@+id/ble_execute"
+                    android:layout_width="0dp"
+                    android:layout_height="wrap_content"
+                    android:layout_weight="1"
+                    android:text="@string/ble_execute_write"
+                    />
+        </LinearLayout>
+    </LinearLayout>
+
+    <include android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons"
+            />
+</RelativeLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/ble_server_start.xml b/apps/CtsVerifier/res/layout/ble_server_start.xml
new file mode 100644
index 0000000..9ce714d
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_server_start.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:padding="10dip"
+        >
+    <include android:id="@+id/pass_fail_buttons" 
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons"
+            />
+    <ListView android:id="@+id/ble_server_tests"
+            android:layout_height="wrap_content"
+            android:layout_width="match_parent"
+            android:layout_above="@id/pass_fail_buttons"
+            android:layout_alignParentTop="true"
+            android:padding="10dip"
+            />
+</RelativeLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/ble_server_start_item.xml b/apps/CtsVerifier/res/layout/ble_server_start_item.xml
new file mode 100644
index 0000000..136192f
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/ble_server_start_item.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:padding="10dip"
+        android:orientation="horizontal"
+        >
+    <ImageView android:id="@+id/status"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:padding="10dip"
+            android:src="@drawable/fs_indeterminate"
+            />
+    <TextView android:id="@+id/instructions"
+            style="@style/InstructionsSmallFont"
+            android:layout_width="0dp"
+            android:layout_weight="1"
+            android:layout_height="wrap_content"
+            />
+</LinearLayout>
\ No newline at end of file
diff --git a/apps/CtsVerifier/res/layout/location_mode_item.xml b/apps/CtsVerifier/res/layout/location_mode_item.xml
new file mode 100644
index 0000000..5e8dedb
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/location_mode_item.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+     Copyright (C) 2013 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content" >
+
+    <ImageView
+        android:id="@+id/status"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_alignParentLeft="true"
+        android:layout_alignParentTop="true"
+        android:layout_marginTop="10dip"
+        android:contentDescription="@string/pass_button_text"
+        android:padding="10dip"
+        android:src="@drawable/fs_indeterminate" />
+
+    <TextView
+        android:id="@+id/instructions"
+        style="@style/InstructionsSmallFont"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_alignParentRight="true"
+        android:layout_alignParentTop="true"
+        android:layout_toRightOf="@id/status"
+        android:text="@string/location_mode_select_high_accuracy" />
+
+    <Button
+        android:id="@+id/launch_settings"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_alignParentRight="true"
+        android:layout_below="@id/instructions"
+        android:layout_marginLeft="20dip"
+        android:layout_marginRight="20dip"
+        android:layout_toRightOf="@id/status"
+        android:onClick="launchSettings"
+        android:text="@string/location_mode_start_settings" />
+
+</RelativeLayout>
diff --git a/apps/CtsVerifier/res/layout/location_mode_main.xml b/apps/CtsVerifier/res/layout/location_mode_main.xml
new file mode 100644
index 0000000..fde6aba
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/location_mode_main.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+     Copyright (C) 2013 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:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:orientation="vertical"
+    android:padding="10dip" >
+
+    <ScrollView
+        android:id="@+id/test_scroller"
+        android:layout_width="match_parent"
+        android:layout_height="0dp"
+        android:layout_weight="1"
+        android:orientation="vertical"
+        android:padding="10dip" >
+
+        <LinearLayout
+            android:id="@+id/test_items"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:orientation="vertical" >
+        </LinearLayout>
+    </ScrollView>
+
+    <include
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_weight="0"
+        layout="@layout/pass_fail_buttons" />
+
+</LinearLayout>
diff --git a/apps/CtsVerifier/res/layout/pass_fail_sample.xml b/apps/CtsVerifier/res/layout/pass_fail_sample.xml
new file mode 100644
index 0000000..84d79ee
--- /dev/null
+++ b/apps/CtsVerifier/res/layout/pass_fail_sample.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 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.
+-->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent">
+
+    <Button android:id="@+id/sample_share_btn"
+            android:text="@string/share_button_text"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content" />
+
+    <include android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_alignParentBottom="true"
+            layout="@layout/pass_fail_buttons" />
+</RelativeLayout>
diff --git a/apps/CtsVerifier/res/values/strings.xml b/apps/CtsVerifier/res/values/strings.xml
index 854744d..e0e6dfc 100644
--- a/apps/CtsVerifier/res/values/strings.xml
+++ b/apps/CtsVerifier/res/values/strings.xml
@@ -30,6 +30,7 @@
     <string name="test_category_hardware">Hardware</string>
     <string name="test_category_networking">Networking</string>
     <string name="test_category_sensors">Sensors</string>
+    <string name="test_category_location">Location</string>
     <string name="test_category_security">Security</string>
     <string name="test_category_streaming">Streaming</string>
     <string name="test_category_features">Features</string>
@@ -118,6 +119,7 @@
 
     <string name="bt_control">Bluetooth Control</string>
     <string name="bt_device_communication">Device Communication</string>
+    <string name="bt_le">Bluetooth Low Energy</string>
 
     <string name="bt_toggle_bluetooth">Toggle Bluetooth</string>
     <string name="bt_toggle_instructions">Disable and enable Bluetooth to successfully complete this test.</string>
@@ -178,6 +180,53 @@
     <string name="bt_unpair">Device must be unpaired via Bluetooth settings before completing the test.\n\nUnpair the device in settings, make the server discoverable, and rescan to pick this device.</string>
     <string name="bt_settings">Bluetooth Settings</string>
 
+    <!-- BLE client side strings -->
+    <string name="ble_client_service_name">Bluetooth LE GATT Client Handler Service</string>
+    <string name="ble_client_test_name">BLE Client Test</string>
+    <string name="ble_client_connect_name">1. BLE Client Connect</string>
+    <string name="ble_discover_service_name">2. BLE Discover Service</string>
+    <string name="ble_client_characteristic_name">3. BLE Read/Write Characteristic</string>
+    <string name="ble_reliable_write_name">4. BLE Reliable Write</string>
+    <string name="ble_notify_characteristic_name">5. BLE Notify Characteristic</string>
+    <string name="ble_client_descriptor_name">6. BLE Read/Write Descriptor</string>
+    <string name="ble_read_rssi_name">7. BLE Read RSSI</string>
+    <string name="ble_client_disconnect_name">8. BLE Client Disconnect</string>
+    <string name="ble_client_test_info">The BLE test must be done simultaneously on two devices. This device is the client. All tests listed here must be done in order.</string>
+    <string name="ble_client_send_connect_info">Type in the Bluetooth address of the remote device to connect to, and verify that the devices are connected.</string>
+    <string name="ble_discover_service_info">Verify that the service is discovered when you press the "Discover Service" button.</string>
+    <string name="ble_read_write_info">Write values to and read values from the server to verify that the write and read functionalities are working correctly.</string>
+    <string name="ble_reliable_write_info">A Reliable Write has two steps.\n\n1) Write to the device. This will trigger a callback from the server to verify that the value written was correct.\n2) Execute the write, if the value written is valid.</string>
+    <string name="ble_notify_characteristic_info">Start accepting notifications, and verify that notifications are being reported correctly. The server should be notifying this device with the time every second.</string>
+    <string name="ble_read_rssi_info">Press button to read the RSSI value. Verify that the RSSI changes as you move the two devices further apart or closer together.</string>
+    <string name="ble_client_disconnect_info">Verify that the device is disconnected when you press the "Disconnect" button</string>
+    <string name="ble_address">Bluetooth address</string>
+    <string name="ble_connect">Connect</string>
+    <string name="ble_discover_service">Discover service</string>
+    <string name="ble_write_hint">Nothing to write yet</string>
+    <string name="ble_read_hint">Nothing read yet</string>
+    <string name="ble_write">Write</string>
+    <string name="ble_read">Read</string>
+    <string name="ble_begin_write">Begin write</string>
+    <string name="ble_execute_write">Execute write</string>
+    <string name="ble_begin_notification">Begin notification</string>
+    <string name="ble_stop_notification">Stop notification</string>
+    <string name="ble_waiting_notification">Waiting on notification</string>
+    <string name="ble_read_rssi">Read RSSI</string>
+    <string name="ble_disconnect">Disconnect</string>
+
+    <!-- BLE server side strings -->
+    <string name="ble_server_service_name">Bluetooth LE GATT Server Handler Service</string>
+    <string name="ble_server_start_name">BLE Server Test</string>
+    <string name="ble_server_start_info">The BLE test must be done simultaneously on two devices, a server device and a client device. This device is the server.</string>
+    <string name="ble_server_receiving_connect">Waiting on connection from BLE client.</string>
+    <string name="ble_server_add_service">Adding service to BLE server.</string>
+    <string name="ble_server_write_characteristic">Waiting on write characteristic request</string>
+    <string name="ble_server_read_characteristic">Waiting on read characteristic request</string>
+    <string name="ble_server_write_descriptor">Waiting on write descriptor request</string>
+    <string name="ble_server_read_descriptor">Waiting on read descriptor request</string>
+    <string name="ble_server_reliable_write">Waiting on reliable write from client</string>
+    <string name="ble_server_receiving_disconnect">Waiting on disconnection from BLE client</string>
+
     <!-- Strings for FeatureSummaryActivity -->
     <string name="feature_summary">Hardware/Software Feature Summary</string>
     <string name="feature_summary_info">This is a test for...</string>
@@ -363,6 +412,12 @@
     <!-- Magnetic Field -->
     <string name="snsr_mag_m_test">Magnetic Field Measurement Tests</string>
 
+    <!-- Strings for Sample Test Activities -->
+    <string name="share_button_text">Share</string>
+    <string name="sample_framework_test">Sample Framework Test</string>
+    <string name="sample_test">Sample Test</string>
+    <string name="sample_test_info">This test verifies that bluetooth sharing is working properly.\nThe test assumes the Device Under Test has bluetooth enabled and is already paired with a second device, also with bluetooth enabled.\nStart this test by clicking share, choose bluetooth from the options, and then select a device to share with.\nNote: This is a sample test, used to demonstrate how to write CTS Verifier tests, so just click pass.</string>
+
     <!-- Strings for SuidFilesActivity -->
     <string name="suid_files">SUID File Scanner</string>
     <string name="suid_files_info">This test will attempt to find unauthorized SUID binaries, but it is not comprehensive due to permission restrictions.\n\nAuthorized SUID binaries will appear green, while unauthorized SUID binaries will appear red.\n\nPress OK to start the scan...</string>
@@ -717,6 +772,55 @@
     <string name="nls_service_stopped">Service should stop once disabled.</string>
     <string name="nls_note_missed">Check that notification was not received.</string>
 
+    <string name="location_mode_high_accuracy_test">High Accuracy Mode Test</string>
+    <string name="location_mode_high_accuracy_info">
+        This test checks that the Location Mode API is consistent with the
+        Location Provider API when the device is in High Accuracy location mode.
+    </string>
+    <string name="location_mode_select_high_accuracy">
+        Please select the \"High accuracy\" mode at Settings > Location and return here.
+    </string>
+    <string name="location_mode_battery_saving_test">Battery Saving Mode Test</string>
+    <string name="location_mode_battery_saving_info">
+        This test checks that the Location Mode API is consistent with the
+        Location Provider API when the device is in Battery Saving location mode.
+    </string>
+    <string name="location_mode_select_battery_saving">
+        Please select the \"Battery Saving\" mode at Settings > Location and return here.
+    </string>
+    <string name="location_mode_device_only_test">Device Only Mode Test</string>
+    <string name="location_mode_device_only_info">
+        This test checks that the Location Mode API is consistent with the
+        Location Provider API when the device is in Device Only location mode.
+    </string>
+    <string name="location_mode_select_device_only">
+        Please select the \"Device Only\" mode at
+        Settings > Location and return here.
+    </string>
+    <string name="location_mode_off_test">Location Mode Off Test</string>
+    <string name="location_mode_off_info">
+        This test checks that the Location Mode API is consistent with the
+        Location Provider API when the device is in the Off location mode.
+    </string>
+
+    <string name="location_mode_start_settings">Launch Settings</string>
+    <string name="location_mode_turn_on">
+        Please turn ON location access (the switch at the top of Settings > Location)
+        and return here.
+    </string>
+    <string name="location_mode_turn_off">
+        Please turn OFF location access (the switch at the top of Settings > Location)
+        and return here.
+    </string>
+    <string name="location_mode_secure_gps_on">GPS provider should be ON in secure settings.</string>
+    <string name="location_mode_secure_gps_off">GPS provider should be OFF in secure settings.</string>
+    <string name="location_mode_secure_nlp_on">Network location provider should be ON in secure settings.</string>
+    <string name="location_mode_secure_nlp_off">Network location provider should be OFF in secure settings.</string>
+    <string name="location_mode_manager_gps_on">GPS provider should be ON in LocationManager.</string>
+    <string name="location_mode_manager_gps_off">GPS provider should be OFF in LocationManager.</string>
+    <string name="location_mode_manager_nlp_on">Network location provider should be ON in LocationManager.</string>
+    <string name="location_mode_manager_nlp_off">Network location provider should be OFF in LocationManager.</string>
+
     <string name="cacert_test">CA Cert Notification Test</string>
     <string name="cacert_info">This test checks that when a CA Certificate is installed, the user is notified.</string>
     <string name="cacert_do_something">Do it</string>
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleButtonActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleButtonActivity.java
new file mode 100644
index 0000000..19900af
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleButtonActivity.java
@@ -0,0 +1,106 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.os.Bundle;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.widget.Button;
+import android.widget.Toast;
+
+public class BleButtonActivity extends PassFailButtons.Activity {
+
+    static final int DISCOVER_SERVICE = 0;
+    static final int DISCONNECT = 1;
+
+    private int mName;
+    private int mInfo;
+    private int mButtonText;
+    private int mCommand;
+    private String mFilter;
+    private String mMessage;
+
+    BleButtonActivity(int target) {
+        if (target == DISCOVER_SERVICE) {
+            mName = R.string.ble_discover_service_name;
+            mInfo = R.string.ble_discover_service_info;
+            mButtonText = R.string.ble_discover_service;
+            mCommand = BleClientService.COMMAND_DISCOVER_SERVICE;
+            mFilter = BleClientService.BLE_SERVICES_DISCOVERED;
+            mMessage = "Service discovered.";
+        } else if (target == DISCONNECT) {
+            mName = R.string.ble_client_disconnect_name;
+            mInfo = R.string.ble_client_disconnect_name;
+            mButtonText = R.string.ble_disconnect;
+            mCommand = BleClientService.COMMAND_DISCONNECT;
+            mFilter = BleClientService.BLE_BLUETOOTH_DISCONNECTED;
+            mMessage = "Bluetooth LE disconnected.";
+        }
+    }
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.ble_button);
+        setPassFailButtonClickListeners();
+        setInfoResources(mName, mInfo, -1);
+        getPassButton().setEnabled(false);
+
+        ((Button) findViewById(R.id.ble_button)).setText(mButtonText);
+        ((Button) findViewById(R.id.ble_button)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                Intent intent = new Intent(BleButtonActivity.this, BleClientService.class);
+                intent.putExtra(BleClientService.EXTRA_COMMAND, mCommand);
+                startService(intent);
+            }
+        });
+    }
+
+    @Override
+    public void onResume() {
+        super.onResume();
+        IntentFilter filter = new IntentFilter();
+        filter.addAction(mFilter);
+        registerReceiver(onBroadcast, filter);
+    }
+
+    @Override
+    public void onPause() {
+        super.onPause();
+        unregisterReceiver(onBroadcast);
+    }
+
+    private void showMessage(String msg) {
+        Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
+    }
+
+    private BroadcastReceiver onBroadcast = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            showMessage(mMessage);
+            getPassButton().setEnabled(true);
+        }
+    };
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientCharacteristicActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientCharacteristicActivity.java
new file mode 100644
index 0000000..1e1941f
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientCharacteristicActivity.java
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+public class BleClientCharacteristicActivity extends BleReadWriteActivity {
+    public BleClientCharacteristicActivity() {
+        super(BleReadWriteActivity.CHARACTERISTIC);
+    }
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientConnectActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientConnectActivity.java
new file mode 100644
index 0000000..a3a9830
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientConnectActivity.java
@@ -0,0 +1,93 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import android.bluetooth.BluetoothAdapter;
+import android.bluetooth.BluetoothDevice;
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.os.Bundle;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.Toast;
+
+public class BleClientConnectActivity extends PassFailButtons.Activity {
+
+    private EditText mEditText;
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.ble_client_connect);
+        setPassFailButtonClickListeners();
+        setInfoResources(R.string.ble_client_connect_name,
+                         R.string.ble_client_send_connect_info, -1);
+        getPassButton().setEnabled(false);
+
+        mEditText = (EditText) findViewById(R.id.ble_address);
+
+        ((Button) findViewById(R.id.ble_connect)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                String address = mEditText.getText().toString();
+                if (!BluetoothAdapter.checkBluetoothAddress(address)) {
+                    showMessage("Invalid bluetooth address.");
+                } else {
+                    Intent intent = new Intent(BleClientConnectActivity.this,
+                                               BleClientService.class);
+                    intent.putExtra(BleClientService.EXTRA_COMMAND,
+                                    BleClientService.COMMAND_CONNECT);
+                    intent.putExtra(BluetoothDevice.EXTRA_DEVICE, address);
+                    startService(intent);
+                }
+            }
+        });
+    }
+
+    @Override
+    public void onResume() {
+        super.onResume();
+        IntentFilter filter = new IntentFilter();
+        filter.addAction(BleClientService.BLE_BLUETOOTH_CONNECTED);
+        registerReceiver(onBroadcast, filter);
+    }
+
+    @Override
+    public void onPause() {
+        super.onPause();
+        unregisterReceiver(onBroadcast);
+    }
+
+    private void showMessage(String msg) {
+        Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
+    }
+
+    private BroadcastReceiver onBroadcast = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            showMessage("Bluetooth LE connected");
+            getPassButton().setEnabled(true);
+        }
+    };
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientDescriptorActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientDescriptorActivity.java
new file mode 100644
index 0000000..ab2229a
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientDescriptorActivity.java
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+public class BleClientDescriptorActivity extends BleReadWriteActivity {
+    public BleClientDescriptorActivity() {
+        super(BleReadWriteActivity.DESCRIPTOR);
+    }
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientDisconnectActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientDisconnectActivity.java
new file mode 100644
index 0000000..083d327
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientDisconnectActivity.java
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+public class BleClientDisconnectActivity extends BleButtonActivity {
+    public BleClientDisconnectActivity() {
+        super(BleButtonActivity.DISCONNECT);
+    }
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientService.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientService.java
new file mode 100644
index 0000000..556ad06
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientService.java
@@ -0,0 +1,390 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import java.util.UUID;
+import java.util.List;
+
+import android.app.Service;
+import android.bluetooth.BluetoothAdapter;
+import android.bluetooth.BluetoothDevice;
+import android.bluetooth.BluetoothGatt;
+import android.bluetooth.BluetoothGattCallback;
+import android.bluetooth.BluetoothGattCharacteristic;
+import android.bluetooth.BluetoothGattDescriptor;
+import android.bluetooth.BluetoothGattService;
+import android.bluetooth.BluetoothManager;
+import android.bluetooth.BluetoothProfile;
+import android.content.Context;
+import android.content.Intent;
+import android.os.Handler;
+import android.os.IBinder;
+import android.util.Log;
+import android.widget.Toast;
+
+public class BleClientService extends Service {
+
+    public static final boolean DEBUG = true;
+    public static final String TAG = "BleClientService";
+
+    public static final int COMMAND_CONNECT = 0;
+    public static final int COMMAND_DISCONNECT = 1;
+    public static final int COMMAND_DISCOVER_SERVICE = 2;
+    public static final int COMMAND_READ_RSSI = 3;
+    public static final int COMMAND_WRITE_CHARACTERISTIC = 4;
+    public static final int COMMAND_READ_CHARACTERISTIC = 5;
+    public static final int COMMAND_WRITE_DESCRIPTOR = 6;
+    public static final int COMMAND_READ_DESCRIPTOR = 7;
+    public static final int COMMAND_SET_NOTIFICATION = 8;
+    public static final int COMMAND_BEGIN_WRITE = 9;
+    public static final int COMMAND_EXECUTE_WRITE = 10;
+    public static final int COMMAND_ABORT_RELIABLE = 11;
+
+    public static final String BLE_BLUETOOTH_CONNECTED =
+            "com.android.cts.verifier.bluetooth.BLE_BLUETOOTH_CONNECTED";
+    public static final String BLE_BLUETOOTH_DISCONNECTED =
+            "com.android.cts.verifier.bluetooth.BLE_BLUETOOTH_DISCONNECTED";
+    public static final String BLE_SERVICES_DISCOVERED =
+            "com.android.cts.verifier.bluetooth.BLE_SERVICES_DISCOVERED";
+    public static final String BLE_CHARACTERISTIC_READ =
+            "com.android.cts.verifier.bluetooth.BLE_CHARACTERISTIC_READ";
+    public static final String BLE_CHARACTERISTIC_WRITE =
+            "com.android.cts.verifier.bluetooth.BLE_CHARACTERISTIC_WRITE";
+    public static final String BLE_CHARACTERISTIC_CHANGED =
+            "com.android.cts.verifier.bluetooth.BLE_CHARACTERISTIC_CHANGED";
+    public static final String BLE_DESCRIPTOR_READ =
+            "com.android.cts.verifier.bluetooth.BLE_DESCRIPTOR_READ";
+    public static final String BLE_DESCRIPTOR_WRITE =
+            "com.android.cts.verifier.bluetooth.BLE_DESCRIPTOR_WRITE";
+    public static final String BLE_RELIABLE_WRITE_COMPLETED =
+            "com.android.cts.verifier.bluetooth.BLE_RELIABLE_WRITE_COMPLETED";
+    public static final String BLE_READ_REMOTE_RSSI =
+            "com.android.cts.verifier.bluetooth.BLE_READ_REMOTE_RSSI";
+
+    public static final String EXTRA_COMMAND =
+            "com.android.cts.verifier.bluetooth.EXTRA_COMMAND";
+    public static final String EXTRA_WRITE_VALUE =
+            "com.android.cts.verifier.bluetooth.EXTRA_WRITE_VALUE";
+    public static final String EXTRA_BOOL =
+            "com.android.cts.verifier.bluetooth.EXTRA_BOOL";
+    public static final String EXTRA_CHARACTERISTIC_VALUE =
+            "com.android.cts.verifier.bluetooth.EXTRA_CHARACTERISTIC_VALUE";
+    public static final String EXTRA_DESCRIPTOR_VALUE =
+            "com.android.cts.verifier.bluetooth.EXTRA_DESCRIPTOR_VALUE";
+    public static final String EXTRA_RSSI_VALUE =
+            "com.android.cts.verifier.bluetooth.EXTRA_RSSI_VALUE";
+
+    private static final UUID SERVICE_UUID =
+            UUID.fromString("00009999-0000-1000-8000-00805f9b34fb");
+    private static final UUID CHARACTERISTIC_UUID =
+            UUID.fromString("00009998-0000-1000-8000-00805f9b34fb");
+    private static final UUID UPDATE_CHARACTERISTIC_UUID =
+            UUID.fromString("00009997-0000-1000-8000-00805f9b34fb");
+    private static final UUID DESCRIPTOR_UUID =
+            UUID.fromString("00009996-0000-1000-8000-00805f9b34fb");
+
+    private BluetoothManager mBluetoothManager;
+    private BluetoothAdapter mBluetoothAdapter;
+    private BluetoothDevice mDevice;
+    private BluetoothGatt mBluetoothGatt;
+    private Handler mHandler;
+
+    @Override
+    public void onCreate() {
+        super.onCreate();
+
+        mBluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
+        mBluetoothAdapter = mBluetoothManager.getAdapter();
+        mHandler = new Handler();
+    }
+
+    @Override
+    public int onStartCommand(Intent intent, int flags, int startId) {
+        if (intent != null) handleIntent(intent);
+        return START_NOT_STICKY;
+    }
+
+    @Override
+    public IBinder onBind(Intent intent) {
+        return null;
+    }
+
+    @Override
+    public void onDestroy() {
+        super.onDestroy();
+        mBluetoothGatt.disconnect();
+        mBluetoothGatt.close();
+    }
+
+    private void handleIntent(Intent intent) {
+        int command = intent.getIntExtra(EXTRA_COMMAND, -1);
+        String address = intent.getStringExtra(BluetoothDevice.EXTRA_DEVICE); // sometimes null
+        String writeValue = intent.getStringExtra(EXTRA_WRITE_VALUE); // sometimes null
+        boolean enable = intent.getBooleanExtra(EXTRA_BOOL, false);
+        BluetoothGattService service;
+        BluetoothGattCharacteristic characteristic;
+        BluetoothGattDescriptor descriptor;
+
+        switch (command) {
+            case COMMAND_CONNECT:
+                mDevice = mBluetoothAdapter.getRemoteDevice(address);
+                mBluetoothGatt = mDevice.connectGatt(this, false, mGattCallbacks);
+                break;
+            case COMMAND_DISCONNECT:
+                if (mBluetoothGatt != null) mBluetoothGatt.disconnect();
+                break;
+            case COMMAND_DISCOVER_SERVICE:
+                if (mBluetoothGatt != null) mBluetoothGatt.discoverServices();
+                break;
+            case COMMAND_READ_RSSI:
+                if (mBluetoothGatt != null) mBluetoothGatt.readRemoteRssi();
+                break;
+            case COMMAND_WRITE_CHARACTERISTIC:
+                writeCharacteristic(writeValue);
+                break;
+            case COMMAND_READ_CHARACTERISTIC:
+                readCharacteristic();
+                break;
+            case COMMAND_WRITE_DESCRIPTOR:
+                writeDescriptor(writeValue);
+                break;
+            case COMMAND_READ_DESCRIPTOR:
+                readDescriptor();
+                break;
+            case COMMAND_SET_NOTIFICATION:
+                setNotification(enable);
+                break;
+            case COMMAND_BEGIN_WRITE:
+                if (mBluetoothGatt != null) mBluetoothGatt.beginReliableWrite();
+                break;
+            case COMMAND_EXECUTE_WRITE:
+                if (mBluetoothGatt != null) mBluetoothGatt.executeReliableWrite();
+                break;
+            case COMMAND_ABORT_RELIABLE:
+                if (mBluetoothGatt != null) mBluetoothGatt.abortReliableWrite(mDevice);
+                break;
+            default:
+                showMessage("Unrecognized command: " + command);
+                break;
+        }
+    }
+
+    private void writeCharacteristic(String writeValue) {
+        BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID);
+        if (characteristic == null) return;
+        characteristic.setValue(writeValue);
+        mBluetoothGatt.writeCharacteristic(characteristic);
+    }
+
+    private void readCharacteristic() {
+        BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID);
+        if (characteristic != null) mBluetoothGatt.readCharacteristic(characteristic);
+    }
+
+    private void writeDescriptor(String writeValue) {
+        BluetoothGattDescriptor descriptor = getDescriptor();
+        if (descriptor == null) return;
+        descriptor.setValue(writeValue.getBytes());
+        mBluetoothGatt.writeDescriptor(descriptor);
+    }
+
+    private void readDescriptor() {
+        BluetoothGattDescriptor descriptor = getDescriptor();
+        if (descriptor != null) mBluetoothGatt.readDescriptor(descriptor);
+    }
+
+    private void setNotification(boolean enable) {
+        BluetoothGattCharacteristic characteristic = getCharacteristic(UPDATE_CHARACTERISTIC_UUID);
+        if (characteristic != null)
+            mBluetoothGatt.setCharacteristicNotification(characteristic, enable);
+    }
+
+    private void notifyConnected() {
+        Intent intent = new Intent(BLE_BLUETOOTH_CONNECTED);
+        sendBroadcast(intent);
+    }
+
+    private void notifyDisconnected() {
+        Intent intent = new Intent(BLE_BLUETOOTH_DISCONNECTED);
+        sendBroadcast(intent);
+    }
+
+    private void notifyServicesDiscovered() {
+        Intent intent = new Intent(BLE_SERVICES_DISCOVERED);
+        sendBroadcast(intent);
+    }
+
+    private void notifyCharacteristicRead(String value) {
+        Intent intent = new Intent(BLE_CHARACTERISTIC_READ);
+        intent.putExtra(EXTRA_CHARACTERISTIC_VALUE, value);
+        sendBroadcast(intent);
+    }
+
+    private void notifyCharacteristicWrite() {
+        Intent intent = new Intent(BLE_CHARACTERISTIC_WRITE);
+        sendBroadcast(intent);
+    }
+
+    private void notifyCharacteristicChanged(String value) {
+        Intent intent = new Intent(BLE_CHARACTERISTIC_CHANGED);
+        intent.putExtra(EXTRA_CHARACTERISTIC_VALUE, value);
+        sendBroadcast(intent);
+    }
+
+    private void notifyDescriptorRead(String value) {
+        Intent intent = new Intent(BLE_DESCRIPTOR_READ);
+        intent.putExtra(EXTRA_DESCRIPTOR_VALUE, value);
+        sendBroadcast(intent);
+    }
+
+    private void notifyDescriptorWrite() {
+        Intent intent = new Intent(BLE_DESCRIPTOR_WRITE);
+        sendBroadcast(intent);
+    }
+
+    private void notifyReliableWriteCompleted() {
+        Intent intent = new Intent(BLE_RELIABLE_WRITE_COMPLETED);
+        sendBroadcast(intent);
+    }
+
+    private void notifyReadRemoteRssi(int rssi) {
+        Intent intent = new Intent(BLE_READ_REMOTE_RSSI);
+        intent.putExtra(EXTRA_RSSI_VALUE, rssi);
+        sendBroadcast(intent);
+    }
+
+    private BluetoothGattService getService() {
+        if (mBluetoothGatt == null) return null;
+
+        BluetoothGattService service = mBluetoothGatt.getService(SERVICE_UUID);
+        if (service == null) {
+            showMessage("Service not found");
+            return null;
+        }
+        return service;
+    }
+
+    private BluetoothGattCharacteristic getCharacteristic(UUID uuid) {
+        BluetoothGattService service = getService();
+        if (service == null) return null;
+
+        BluetoothGattCharacteristic characteristic = service.getCharacteristic(uuid);
+        if (characteristic == null) {
+            showMessage("Characteristic not found");
+            return null;
+        }
+        return characteristic;
+    }
+
+    private BluetoothGattDescriptor getDescriptor() {
+        BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID);
+        if (characteristic == null) return null;
+
+        BluetoothGattDescriptor descriptor = characteristic.getDescriptor(DESCRIPTOR_UUID);
+        if (descriptor == null) {
+            showMessage("Descriptor not found");
+            return null;
+        }
+        return descriptor;
+    }
+
+    private void showMessage(final String msg) {
+        mHandler.post(new Runnable() {
+            public void run() {
+                Toast.makeText(BleClientService.this, msg, Toast.LENGTH_SHORT).show();
+            }
+        });
+    }
+
+    private final BluetoothGattCallback mGattCallbacks = new BluetoothGattCallback() {
+        @Override
+        public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
+            if (DEBUG) Log.d(TAG, "onConnectionStateChange");
+            if (status == BluetoothGatt.GATT_SUCCESS) {
+                if (newState == BluetoothProfile.STATE_CONNECTED) notifyConnected();
+                else if (status == BluetoothProfile.STATE_DISCONNECTED) {
+                    notifyDisconnected();
+                    showMessage("Bluetooth LE disconnected");
+                }
+            }
+        }
+
+        @Override
+        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
+            if ((status == BluetoothGatt.GATT_SUCCESS) &&
+                (mBluetoothGatt.getService(SERVICE_UUID) != null)) {
+                notifyServicesDiscovered();
+            }
+        }
+
+        @Override
+        public void onCharacteristicRead(BluetoothGatt gatt,
+                                         BluetoothGattCharacteristic characteristic, int status) {
+            if ((status == BluetoothGatt.GATT_SUCCESS) &&
+                (characteristic.getUuid().equals(CHARACTERISTIC_UUID))) {
+                notifyCharacteristicRead(characteristic.getStringValue(0));
+            }
+        }
+
+        @Override
+        public void onCharacteristicWrite(BluetoothGatt gatt,
+                                          BluetoothGattCharacteristic characteristic, int status) {
+            if (DEBUG) Log.d(TAG, "onCharacteristicWrite: characteristic.val=" + characteristic.getStringValue(0)
+                                  + " status=" + status);
+            BluetoothGattCharacteristic mCharacteristic = getCharacteristic(CHARACTERISTIC_UUID);
+            if ((status == BluetoothGatt.GATT_SUCCESS) &&
+                (characteristic.getStringValue(0).equals(mCharacteristic.getStringValue(0)))) {
+                notifyCharacteristicWrite();
+            }
+        }
+
+        @Override
+        public void onCharacteristicChanged(BluetoothGatt gatt,
+                                            BluetoothGattCharacteristic characteristic) {
+            if (characteristic.getUuid().equals(UPDATE_CHARACTERISTIC_UUID))
+                notifyCharacteristicChanged(characteristic.getStringValue(0));
+        }
+
+        @Override
+        public void onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor,
+                                     int status) {
+            if ((status == BluetoothGatt.GATT_SUCCESS) &&
+                (descriptor.getUuid().equals(DESCRIPTOR_UUID))) {
+                notifyDescriptorRead(new String(descriptor.getValue()));
+            }
+        }
+
+        @Override
+        public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor,
+                                      int status) {
+            if ((status == BluetoothGatt.GATT_SUCCESS) &&
+                (descriptor.getUuid().equals(DESCRIPTOR_UUID))) {
+                notifyDescriptorWrite();
+            }
+        }
+
+        @Override
+        public void onReliableWriteCompleted(BluetoothGatt gatt, int status) {
+            if (status == BluetoothGatt.GATT_SUCCESS) notifyReliableWriteCompleted();
+        }
+
+        @Override
+        public void onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) {
+            if (status == BluetoothGatt.GATT_SUCCESS) notifyReadRemoteRssi(rssi);
+        }
+    };
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientTestActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientTestActivity.java
new file mode 100644
index 0000000..a13d934
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleClientTestActivity.java
@@ -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.
+ */
+
+package com.android.cts.verifier.bluetooth;
+
+import com.android.cts.verifier.ManifestTestListAdapter;
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import android.os.Bundle;
+
+public class BleClientTestActivity extends PassFailButtons.TestListActivity {
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.pass_fail_list);
+        setPassFailButtonClickListeners();
+        setInfoResources(R.string.ble_client_test_name, R.string.ble_client_test_info, -1);
+
+        setTestListAdapter(new ManifestTestListAdapter(this, getClass().getName()));
+    }
+}
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleDiscoverServiceActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleDiscoverServiceActivity.java
new file mode 100644
index 0000000..6896b04
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleDiscoverServiceActivity.java
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+public class BleDiscoverServiceActivity extends BleButtonActivity {
+    public BleDiscoverServiceActivity() {
+        super(BleButtonActivity.DISCOVER_SERVICE);
+    }
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleNotifyCharacteristicActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleNotifyCharacteristicActivity.java
new file mode 100644
index 0000000..e0c79bf
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleNotifyCharacteristicActivity.java
@@ -0,0 +1,92 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.os.Bundle;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.widget.Button;
+import android.widget.TextView;
+import android.widget.Toast;
+
+public class BleNotifyCharacteristicActivity extends PassFailButtons.Activity {
+
+    private boolean mEnable;
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.ble_notify_characteristic);
+        setPassFailButtonClickListeners();
+        setInfoResources(R.string.ble_notify_characteristic_name,
+                         R.string.ble_notify_characteristic_info, -1);
+
+        mEnable = false;
+
+        ((Button) findViewById(R.id.ble_notify)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                mEnable = !mEnable;
+                if (mEnable) ((Button) v).setText(getString(R.string.ble_stop_notification));
+                else ((Button) v).setText(getString(R.string.ble_begin_notification));
+
+                Intent intent = new Intent(BleNotifyCharacteristicActivity.this,
+                                           BleClientService.class);
+                intent.putExtra(BleClientService.EXTRA_COMMAND,
+                                BleClientService.COMMAND_SET_NOTIFICATION);
+                intent.putExtra(BleClientService.EXTRA_BOOL, mEnable);
+                startService(intent);
+            }
+        });
+    }
+
+    @Override
+    public void onResume() {
+        super.onResume();
+        IntentFilter filter = new IntentFilter();
+        filter.addAction(BleClientService.BLE_CHARACTERISTIC_CHANGED);
+        registerReceiver(onBroadcast, filter);
+    }
+
+    @Override
+    public void onPause() {
+        super.onPause();
+        unregisterReceiver(onBroadcast);
+        mEnable = false;
+        Intent intent = new Intent(BleNotifyCharacteristicActivity.this,
+                                   BleClientService.class);
+        intent.putExtra(BleClientService.EXTRA_COMMAND,
+                        BleClientService.COMMAND_SET_NOTIFICATION);
+        intent.putExtra(BleClientService.EXTRA_BOOL, mEnable);
+        startService(intent);
+    }
+
+    private BroadcastReceiver onBroadcast = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            String value = intent.getStringExtra(BleClientService.EXTRA_CHARACTERISTIC_VALUE);
+            ((TextView) findViewById(R.id.ble_notify_text)).setText(value);
+        }
+    };
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReadRssiActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReadRssiActivity.java
new file mode 100644
index 0000000..800499c
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReadRssiActivity.java
@@ -0,0 +1,76 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.os.Bundle;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.TextView;
+import android.widget.Toast;
+
+public class BleReadRssiActivity extends PassFailButtons.Activity {
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.ble_read_rssi);
+        setPassFailButtonClickListeners();
+        setInfoResources(R.string.ble_read_rssi_name,
+                         R.string.ble_read_rssi_info, -1);
+
+        ((Button) findViewById(R.id.ble_read_rssi)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                Intent intent = new Intent(BleReadRssiActivity.this, BleClientService.class);
+                intent.putExtra(BleClientService.EXTRA_COMMAND,
+                                BleClientService.COMMAND_READ_RSSI);
+                startService(intent);
+            }
+        });
+    }
+
+    @Override
+    public void onResume() {
+        super.onResume();
+        IntentFilter filter = new IntentFilter();
+        filter.addAction(BleClientService.BLE_READ_REMOTE_RSSI);
+        registerReceiver(onBroadcast, filter);
+    }
+
+    @Override
+    public void onPause() {
+        super.onPause();
+        unregisterReceiver(onBroadcast);
+    }
+
+    private BroadcastReceiver onBroadcast = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            int rssi = intent.getIntExtra(BleClientService.EXTRA_RSSI_VALUE, 128);
+            ((TextView) findViewById(R.id.ble_rssi_text)).setText(Integer.toString(rssi));
+        }
+    };
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReadWriteActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReadWriteActivity.java
new file mode 100644
index 0000000..22233ef
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReadWriteActivity.java
@@ -0,0 +1,127 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.os.Bundle;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.TextView;
+import android.widget.Toast;
+
+class BleReadWriteActivity extends PassFailButtons.Activity {
+
+    static final int CHARACTERISTIC = 0;
+    static final int DESCRIPTOR = 1;
+
+    private int mWriteCommand;
+    private int mReadCommand;
+    private String mWriteFilter;
+    private String mReadFilter;
+    private String mExtraValue;
+    private int mName;
+    private EditText mEditText;
+
+    BleReadWriteActivity(int target) {
+        if (target == CHARACTERISTIC) {
+            mWriteCommand = BleClientService.COMMAND_WRITE_CHARACTERISTIC;
+            mReadCommand = BleClientService.COMMAND_READ_CHARACTERISTIC;
+            mWriteFilter = BleClientService.BLE_CHARACTERISTIC_WRITE;
+            mReadFilter = BleClientService.BLE_CHARACTERISTIC_READ;
+            mExtraValue = BleClientService.EXTRA_CHARACTERISTIC_VALUE;
+            mName = R.string.ble_client_characteristic_name;
+        } else if (target == DESCRIPTOR) {
+            mWriteCommand = BleClientService.COMMAND_WRITE_DESCRIPTOR;
+            mReadCommand = BleClientService.COMMAND_READ_DESCRIPTOR;
+            mWriteFilter = BleClientService.BLE_DESCRIPTOR_WRITE;
+            mReadFilter = BleClientService.BLE_DESCRIPTOR_READ;
+            mExtraValue = BleClientService.EXTRA_DESCRIPTOR_VALUE;
+            mName = R.string.ble_client_descriptor_name;
+        }
+    }
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.ble_client_read_write);
+        setPassFailButtonClickListeners();
+        setInfoResources(mName, R.string.ble_read_write_info, -1);
+
+        mEditText = (EditText) findViewById(R.id.write_text);
+
+        ((Button) findViewById(R.id.ble_write)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                String writeValue = mEditText.getText().toString();
+                Intent intent = new Intent(BleReadWriteActivity.this, BleClientService.class);
+                intent.putExtra(BleClientService.EXTRA_COMMAND, mWriteCommand);
+                intent.putExtra(BleClientService.EXTRA_WRITE_VALUE, writeValue);
+                startService(intent);
+                mEditText.setText("");
+            }
+        });
+
+        ((Button) findViewById(R.id.ble_read)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                Intent intent = new Intent(BleReadWriteActivity.this, BleClientService.class);
+                intent.putExtra(BleClientService.EXTRA_COMMAND, mReadCommand);
+                startService(intent);
+            }
+        });
+    }
+
+    @Override
+    public void onResume() {
+        super.onResume();
+        IntentFilter filter = new IntentFilter();
+        filter.addAction(mReadFilter);
+        filter.addAction(mWriteFilter);
+        registerReceiver(onBroadcast, filter);
+    }
+
+    @Override
+    public void onPause() {
+        super.onPause();
+        unregisterReceiver(onBroadcast);
+    }
+
+    private void showMessage(String msg) {
+        Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
+    }
+
+    private BroadcastReceiver onBroadcast = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            String action = intent.getAction();
+            if (action == mWriteFilter)
+                showMessage("Write successful callback");
+            else if (action == mReadFilter) {
+                String value = intent.getStringExtra(mExtraValue);
+                ((TextView) findViewById(R.id.read_text)).setText(value);
+            }
+        }
+    };
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReliableWriteActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReliableWriteActivity.java
new file mode 100644
index 0000000..c7460b5
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleReliableWriteActivity.java
@@ -0,0 +1,117 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.os.Bundle;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.Toast;
+
+public class BleReliableWriteActivity extends PassFailButtons.Activity {
+
+    EditText mEditText;
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.ble_reliable_write);
+        setPassFailButtonClickListeners();
+        setInfoResources(R.string.ble_reliable_write_name, R.string.ble_reliable_write_info, -1);
+        getPassButton().setEnabled(false);
+        ((Button) findViewById(R.id.ble_execute)).setEnabled(false);
+
+        mEditText = (EditText) findViewById(R.id.write_text);
+
+        ((Button) findViewById(R.id.ble_begin)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                Intent intent = new Intent(BleReliableWriteActivity.this, BleClientService.class);
+                intent.putExtra(BleClientService.EXTRA_COMMAND,
+                                BleClientService.COMMAND_BEGIN_WRITE);
+                startService(intent);
+            }
+        });
+
+        ((Button) findViewById(R.id.ble_write)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                String writeValue = mEditText.getText().toString();
+                Intent intent = new Intent(BleReliableWriteActivity.this, BleClientService.class);
+                intent.putExtra(BleClientService.EXTRA_COMMAND,
+                                BleClientService.COMMAND_WRITE_CHARACTERISTIC);
+                intent.putExtra(BleClientService.EXTRA_WRITE_VALUE, writeValue);
+                startService(intent);
+                mEditText.setText("");
+            }
+        });
+
+        ((Button) findViewById(R.id.ble_execute)).setOnClickListener(new OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                Intent intent = new Intent(BleReliableWriteActivity.this, BleClientService.class);
+                intent.putExtra(BleClientService.EXTRA_COMMAND,
+                                BleClientService.COMMAND_EXECUTE_WRITE);
+                startService(intent);
+            }
+        });
+    }
+
+    @Override
+    public void onResume() {
+        super.onResume();
+        IntentFilter filter = new IntentFilter();
+        filter.addAction(BleClientService.BLE_CHARACTERISTIC_WRITE);
+        filter.addAction(BleClientService.BLE_RELIABLE_WRITE_COMPLETED);
+        registerReceiver(onBroadcast, filter);
+    }
+
+    @Override
+    public void onPause() {
+        super.onPause();
+        unregisterReceiver(onBroadcast);
+        Intent intent = new Intent(this, BleClientService.class);
+        intent.putExtra(BleClientService.EXTRA_COMMAND, BleClientService.COMMAND_ABORT_RELIABLE);
+        startService(intent);
+    }
+
+    private void showMessage(String msg) {
+        Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
+    }
+
+    private BroadcastReceiver onBroadcast = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            String action = intent.getAction();
+            if (action == BleClientService.BLE_CHARACTERISTIC_WRITE) {
+                showMessage("Write value verified.");
+                ((Button) findViewById(R.id.ble_execute)).setEnabled(true);
+            } else if (action == BleClientService.BLE_RELIABLE_WRITE_COMPLETED) {
+                showMessage("Reliable write completed.");
+                getPassButton().setEnabled(true);
+            }
+        }
+    };
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleServerService.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleServerService.java
new file mode 100644
index 0000000..a896d69
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleServerService.java
@@ -0,0 +1,328 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import java.util.Date;
+import java.util.List;
+import java.util.Timer;
+import java.util.TimerTask;
+import java.util.UUID;
+
+import android.app.Service;
+import android.bluetooth.BluetoothAdapter;
+import android.bluetooth.BluetoothDevice;
+import android.bluetooth.BluetoothGatt;
+import android.bluetooth.BluetoothGattCharacteristic;
+import android.bluetooth.BluetoothGattDescriptor;
+import android.bluetooth.BluetoothGattServer;
+import android.bluetooth.BluetoothGattServerCallback;
+import android.bluetooth.BluetoothGattService;
+import android.bluetooth.BluetoothManager;
+import android.bluetooth.BluetoothProfile;
+import android.content.Context;
+import android.content.Intent;
+import android.os.Handler;
+import android.os.IBinder;
+import android.util.Log;
+import android.widget.Toast;
+
+public class BleServerService extends Service {
+
+    public static final boolean DEBUG = true;
+    public static final String TAG = "BleServerService";
+
+    public static final int COMMAND_ADD_SERVICE = 0;
+    public static final int COMMAND_WRITE_CHARACTERISTIC = 1;
+    public static final int COMMAND_WRITE_DESCRIPTOR = 2;
+
+    public static final String BLE_SERVER_CONNECTED =
+            "com.android.cts.verifier.bluetooth.BLE_SERVER_CONNECTED";
+    public static final String BLE_SERVER_DISCONNECTED =
+            "com.android.cts.verifier.bluetooth.BLE_SERVER_DISCONNECTED";
+    public static final String BLE_SERVICE_ADDED =
+            "com.android.cts.verifier.bluetooth.BLE_SERVICE_ADDED";
+    public static final String BLE_CHARACTERISTIC_READ_REQUEST =
+            "com.android.cts.verifier.bluetooth.BLE_CHARACTERISTIC_READ_REQUEST";
+    public static final String BLE_CHARACTERISTIC_WRITE_REQUEST =
+            "com.android.cts.verifier.bluetooth.BLE_CHARACTERISTIC_WRITE_REQUEST";
+    public static final String BLE_DESCRIPTOR_READ_REQUEST =
+            "com.android.cts.verifier.bluetooth.BLE_DESCRIPTOR_READ_REQUEST";
+    public static final String BLE_DESCRIPTOR_WRITE_REQUEST =
+            "com.android.cts.verifier.bluetooth.BLE_DESCRIPTOR_WRITE_REQUEST";
+    public static final String BLE_EXECUTE_WRITE =
+            "com.android.cts.verifier.bluetooth.BLE_EXECUTE_WRITE";
+
+    private static final UUID SERVICE_UUID =
+            UUID.fromString("00009999-0000-1000-8000-00805f9b34fb");
+    private static final UUID CHARACTERISTIC_UUID =
+            UUID.fromString("00009998-0000-1000-8000-00805f9b34fb");
+    private static final UUID UPDATE_CHARACTERISTIC_UUID =
+            UUID.fromString("00009997-0000-1000-8000-00805f9b34fb");
+    private static final UUID DESCRIPTOR_UUID =
+            UUID.fromString("00009996-0000-1000-8000-00805f9b34fb");
+
+    private BluetoothManager mBluetoothManager;
+    private BluetoothGattServer mGattServer;
+    private BluetoothGattService mService;
+    private BluetoothDevice mDevice;
+    private Timer mNotificationTimer;
+    private Handler mHandler;
+    private String mReliableWriteValue;
+
+    @Override
+    public void onCreate() {
+        super.onCreate();
+
+        mBluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
+        mGattServer = mBluetoothManager.openGattServer(this, mCallbacks);
+        mService = createService();
+        mGattServer.addService(mService);
+        mDevice = null;
+        mReliableWriteValue = null;
+
+        mHandler = new Handler();
+    }
+
+    @Override
+    public int onStartCommand(Intent intent, int flags, int startId) {
+        return START_NOT_STICKY;
+    }
+
+    @Override
+    public IBinder onBind(Intent intent) {
+        return null;
+    }
+
+    @Override
+    public void onDestroy() {
+        super.onDestroy();
+        if (mDevice != null) mGattServer.cancelConnection(mDevice);
+        mGattServer.close();
+    }
+
+    private void writeCharacteristic(String writeValue) {
+        BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID);
+        if (characteristic != null) return;
+        characteristic.setValue(writeValue);
+    }
+
+    private void writeDescriptor(String writeValue) {
+        BluetoothGattDescriptor descriptor = getDescriptor();
+        if (descriptor == null) return;
+        descriptor.setValue(writeValue.getBytes());
+    }
+
+    private void notifyConnected() {
+        if (DEBUG) Log.d(TAG, "notifyConnected");
+        Intent intent = new Intent(BLE_SERVER_CONNECTED);
+        sendBroadcast(intent);
+    }
+
+    private void notifyDisconnected() {
+        if (DEBUG) Log.d(TAG, "notifyDisconnected");
+        Intent intent = new Intent(BLE_SERVER_DISCONNECTED);
+        sendBroadcast(intent);
+    }
+
+    private void notifyServiceAdded() {
+        if (DEBUG) Log.d(TAG, "notifyServiceAdded");
+        Intent intent = new Intent(BLE_SERVICE_ADDED);
+        sendBroadcast(intent);
+    }
+
+    private void notifyCharacteristicReadRequest() {
+        if (DEBUG) Log.d(TAG, "notifyCharacteristicReadRequest");
+        Intent intent = new Intent(BLE_CHARACTERISTIC_READ_REQUEST);
+        sendBroadcast(intent);
+    }
+
+    private void notifyCharacteristicWriteRequest() {
+        if (DEBUG) Log.d(TAG, "notifyCharacteristicWriteRequest");
+        Intent intent = new Intent(BLE_CHARACTERISTIC_WRITE_REQUEST);
+        sendBroadcast(intent);
+    }
+
+    private void notifyDescriptorReadRequest() {
+        if (DEBUG) Log.d(TAG, "notifyDescriptorReadRequest");
+        Intent intent = new Intent(BLE_DESCRIPTOR_READ_REQUEST);
+        sendBroadcast(intent);
+    }
+
+    private void notifyDescriptorWriteRequest() {
+        if (DEBUG) Log.d(TAG, "notifyDescriptorWriteRequest");
+        Intent intent = new Intent(BLE_DESCRIPTOR_WRITE_REQUEST);
+        sendBroadcast(intent);
+    }
+
+    private void notifyExecuteWrite() {
+        if (DEBUG) Log.d(TAG, "notifyExecuteWrite");
+        Intent intent = new Intent(BLE_EXECUTE_WRITE);
+        sendBroadcast(intent);
+    }
+
+    private BluetoothGattCharacteristic getCharacteristic(UUID uuid) {
+        BluetoothGattCharacteristic characteristic =
+                mService.getCharacteristic(uuid);
+        if (characteristic == null) {
+            showMessage("Characteristic not found");
+            return null;
+        }
+        return characteristic;
+    }
+
+    private BluetoothGattDescriptor getDescriptor() {
+        BluetoothGattCharacteristic characteristic = getCharacteristic(CHARACTERISTIC_UUID);
+        if (characteristic == null) return null;
+
+        BluetoothGattDescriptor descriptor = characteristic.getDescriptor(DESCRIPTOR_UUID);
+        if (descriptor == null) {
+            showMessage("Descriptor not found");
+            return null;
+        }
+        return descriptor;
+    }
+
+    private BluetoothGattService createService() {
+        BluetoothGattService service =
+                new BluetoothGattService(SERVICE_UUID, BluetoothGattService.SERVICE_TYPE_PRIMARY);
+        BluetoothGattCharacteristic characteristic =
+                new BluetoothGattCharacteristic(CHARACTERISTIC_UUID, 0x0A, 0x11);
+        BluetoothGattDescriptor descriptor = new BluetoothGattDescriptor(DESCRIPTOR_UUID, 0x11);
+        characteristic.addDescriptor(descriptor);
+        service.addCharacteristic(characteristic);
+
+        BluetoothGattCharacteristic notiCharacteristic =
+                new BluetoothGattCharacteristic(UPDATE_CHARACTERISTIC_UUID, 0x10, 0x00);
+        service.addCharacteristic(notiCharacteristic);
+
+        return service;
+    }
+
+    private void beginNotification() {
+        TimerTask task = new TimerTask() {
+            @Override
+            public void run() {
+                BluetoothGattCharacteristic characteristic =
+                        mService.getCharacteristic(UPDATE_CHARACTERISTIC_UUID);
+                if (characteristic == null) return;
+
+                String date = (new Date()).toString();
+                characteristic.setValue(date);
+                mGattServer.notifyCharacteristicChanged(mDevice, characteristic, false);
+            }
+        };
+        mNotificationTimer = new Timer();
+        mNotificationTimer.schedule(task, 0, 1000);
+    }
+
+    private void stopNotification() {
+        if (mNotificationTimer == null) return;
+        mNotificationTimer.cancel();
+        mNotificationTimer = null;
+    }
+
+    private void showMessage(final String msg) {
+        mHandler.post(new Runnable() {
+            public void run() {
+                Toast.makeText(BleServerService.this, msg, Toast.LENGTH_SHORT).show();
+            }
+        });
+    }
+
+    private final BluetoothGattServerCallback mCallbacks = new BluetoothGattServerCallback() {
+        @Override
+        public void onConnectionStateChange(BluetoothDevice device, int status, int newState) {
+            if (DEBUG) Log.d(TAG, "onConnectionStateChange: newState=" + newState);
+            if (status == BluetoothGatt.GATT_SUCCESS) {
+                if (newState == BluetoothProfile.STATE_CONNECTED) {
+                    mDevice = device;
+                    notifyConnected();
+                    beginNotification();
+                } else if (status == BluetoothProfile.STATE_DISCONNECTED) {
+                    stopNotification();
+                    notifyDisconnected();
+                    mDevice = null;
+                }
+            }
+        }
+
+        @Override
+        public void onServiceAdded(int status, BluetoothGattService service) {
+            if (DEBUG) Log.d(TAG, "onServiceAdded()");
+            if (status == BluetoothGatt.GATT_SUCCESS) notifyServiceAdded();
+        }
+
+        @Override
+        public void onCharacteristicReadRequest(BluetoothDevice device, int requestId,
+                            int offset, BluetoothGattCharacteristic characteristic) {
+            if (DEBUG) Log.d(TAG, "onCharacteristicReadRequest()");
+
+            notifyCharacteristicReadRequest();
+            mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS, 0,
+                                     characteristic.getValue());
+        }
+
+        @Override
+        public void onCharacteristicWriteRequest(BluetoothDevice device, int requestId,
+                                                 BluetoothGattCharacteristic characteristic,
+                                                 boolean preparedWrite, boolean responseNeeded,
+                                                 int offset, byte[] value) {
+            if (DEBUG) Log.d(TAG, "onCharacteristicWriteRequest: preparedWrite=" + preparedWrite);
+
+            notifyCharacteristicWriteRequest();
+            if (preparedWrite) mReliableWriteValue = new String(value);
+            else characteristic.setValue(value);
+
+            if (responseNeeded)
+                mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS, 0, null);
+        }
+
+        @Override
+        public void onDescriptorReadRequest(BluetoothDevice device, int requestId,
+                                            int offset, BluetoothGattDescriptor descriptor) {
+            if (DEBUG) Log.d(TAG, "onDescriptorReadRequest(): (descriptor == getDescriptor())="
+                                  + (descriptor == getDescriptor()));
+
+            notifyDescriptorReadRequest();
+            mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS, 0,
+                                     descriptor.getValue());
+        }
+
+        @Override
+        public void onDescriptorWriteRequest(BluetoothDevice device, int requestId,
+                                             BluetoothGattDescriptor descriptor,
+                                             boolean preparedWrite, boolean responseNeeded,
+                                             int offset,  byte[] value) {
+            if (DEBUG) Log.d(TAG, "onDescriptorWriteRequest(): (descriptor == getDescriptor())="
+                                  + (descriptor == getDescriptor()));
+
+            notifyDescriptorWriteRequest();
+            descriptor.setValue(value);
+            if (responseNeeded)
+                mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS, 0, null);
+        }
+
+        @Override
+        public void onExecuteWrite(BluetoothDevice device, int requestId, boolean execute) {
+            if (DEBUG) Log.d(TAG, "onExecuteWrite");
+            if (execute) {
+                notifyExecuteWrite();
+                getCharacteristic(CHARACTERISTIC_UUID).setValue(mReliableWriteValue);
+            }
+        }
+    };
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleServerStartActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleServerStartActivity.java
new file mode 100644
index 0000000..ec31fde
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleServerStartActivity.java
@@ -0,0 +1,196 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.bluetooth;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.os.Bundle;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.BaseAdapter;
+import android.widget.ImageView;
+import android.widget.ListView;
+import android.widget.TextView;
+
+public class BleServerStartActivity extends PassFailButtons.Activity {
+
+    private List<Test> mTestList;
+    private TestAdapter mTestAdapter;
+    private int mAllPassed;
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.ble_server_start);
+        setPassFailButtonClickListeners();
+        setInfoResources(R.string.ble_server_start_name,
+                         R.string.ble_server_start_info, -1);
+        getPassButton().setEnabled(false);
+
+        mTestList = setupTestList();
+        mTestAdapter = new TestAdapter(this, mTestList);
+
+        ListView listView = (ListView) findViewById(R.id.ble_server_tests);
+        listView.setAdapter(mTestAdapter);
+
+        mAllPassed = 0;
+        startService(new Intent(this, BleServerService.class));
+    }
+
+    @Override
+    public void onResume() {
+        super.onResume();
+
+        IntentFilter filter = new IntentFilter();
+        filter.addAction(BleServerService.BLE_SERVICE_ADDED);
+        filter.addAction(BleServerService.BLE_SERVER_CONNECTED);
+        filter.addAction(BleServerService.BLE_CHARACTERISTIC_READ_REQUEST);
+        filter.addAction(BleServerService.BLE_CHARACTERISTIC_WRITE_REQUEST);
+        filter.addAction(BleServerService.BLE_DESCRIPTOR_READ_REQUEST);
+        filter.addAction(BleServerService.BLE_DESCRIPTOR_WRITE_REQUEST);
+        filter.addAction(BleServerService.BLE_EXECUTE_WRITE);
+        filter.addAction(BleServerService.BLE_SERVER_DISCONNECTED);
+        registerReceiver(onBroadcast, filter);
+    }
+
+    @Override
+    public void onPause() {
+        super.onPause();
+        unregisterReceiver(onBroadcast);
+    }
+
+    @Override
+    public void onDestroy() {
+        super.onDestroy();
+        stopService(new Intent(this, BleServerService.class));
+    }
+
+    private List<Test> setupTestList() {
+        ArrayList<Test> testList = new ArrayList<Test>();
+        testList.add(new Test(R.string.ble_server_add_service));
+        testList.add(new Test(R.string.ble_server_receiving_connect));
+        testList.add(new Test(R.string.ble_server_read_characteristic));
+        testList.add(new Test(R.string.ble_server_write_characteristic));
+        testList.add(new Test(R.string.ble_server_read_descriptor));
+        testList.add(new Test(R.string.ble_server_write_descriptor));
+        testList.add(new Test(R.string.ble_server_reliable_write));
+        testList.add(new Test(R.string.ble_server_receiving_disconnect));
+        return testList;
+    }
+
+    class Test {
+        private boolean passed;
+        private int instructions;
+
+        private Test(int instructions) {
+            passed = false;
+            this.instructions = instructions;
+        }
+    }
+
+    private BroadcastReceiver onBroadcast = new BroadcastReceiver() {
+        @Override
+        public void onReceive(Context context, Intent intent) {
+            String action = intent.getAction();
+            if (action == BleServerService.BLE_SERVICE_ADDED) {
+                mTestList.get(0).passed = true;
+                mAllPassed |= 0x01;
+            } else if (action == BleServerService.BLE_SERVER_CONNECTED) {
+                mTestList.get(1).passed = true;
+                mAllPassed |= 0x02;
+            } else if (action == BleServerService.BLE_CHARACTERISTIC_READ_REQUEST) {
+                mTestList.get(2).passed = true;
+                mAllPassed |= 0x04;
+            } else if (action == BleServerService.BLE_CHARACTERISTIC_WRITE_REQUEST) {
+                mTestList.get(3).passed = true;
+                mAllPassed |= 0x08;
+            } else if (action == BleServerService.BLE_DESCRIPTOR_READ_REQUEST) {
+                mTestList.get(4).passed = true;
+                mAllPassed |= 0x10;
+            } else if (action == BleServerService.BLE_DESCRIPTOR_WRITE_REQUEST) {
+                mTestList.get(5).passed = true;
+                mAllPassed |= 0x20;
+            } else if (action == BleServerService.BLE_EXECUTE_WRITE) {
+                mTestList.get(6).passed = true;
+                mAllPassed |= 0x40;
+            } else if (action == BleServerService.BLE_SERVER_DISCONNECTED) {
+                mTestList.get(7).passed = true;
+                mAllPassed |= 0x80;
+            }
+            mTestAdapter.notifyDataSetChanged();
+            if (mAllPassed == 0xFF) getPassButton().setEnabled(true);
+        }
+    };
+
+    class TestAdapter extends BaseAdapter {
+        Context context;
+        List<Test> tests;
+        LayoutInflater inflater;
+
+        public TestAdapter(Context context, List<Test> tests) {
+            this.context = context;
+            inflater = LayoutInflater.from(context);
+            this.tests = tests;
+        }
+
+        @Override
+        public int getCount() {
+            return tests.size();
+        }
+
+        @Override
+        public Object getItem(int position) {
+            return tests.get(position);
+        }
+
+        @Override
+        public long getItemId(int position) {
+            return position;
+        }
+
+        @Override
+        public View getView(int position, View convertView, ViewGroup parent) {
+            ViewGroup vg;
+
+            if (convertView != null) {
+                vg = (ViewGroup) convertView;
+            } else {
+                vg = (ViewGroup) inflater.inflate(R.layout.ble_server_start_item, null);
+            }
+
+            Test test = tests.get(position);
+            if (test.passed) {
+                ((ImageView) vg.findViewById(R.id.status)).setImageResource(R.drawable.fs_good);
+            } else {
+                ((ImageView) vg.findViewById(R.id.status)).
+                                setImageResource(R.drawable.fs_indeterminate);
+            }
+            ((TextView) vg.findViewById(R.id.instructions)).setText(test.instructions);
+
+            return vg;
+        }
+    }
+}
\ No newline at end of file
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeBatterySavingTestActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeBatterySavingTestActivity.java
new file mode 100644
index 0000000..08fb34d
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeBatterySavingTestActivity.java
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.location;
+
+import android.location.LocationManager;
+import android.provider.Settings.Secure;
+import com.android.cts.verifier.R;
+
+public class LocationModeBatterySavingTestActivity extends LocationModeTestActivity {
+
+    @Override
+    protected void createTestItems() {
+        createUserItem(R.string.location_mode_turn_on);
+        createUserItem(R.string.location_mode_select_battery_saving);
+        createAutoItem(R.string.location_mode_secure_gps_off);
+        createAutoItem(R.string.location_mode_secure_nlp_on);
+        createAutoItem(R.string.location_mode_manager_gps_off);
+        createAutoItem(R.string.location_mode_manager_nlp_on);
+    }
+
+    @Override
+    protected void setInfoResources() {
+        setInfoResources(R.string.location_mode_battery_saving_test,
+                R.string.location_mode_battery_saving_info, -1);
+    }
+
+    @Override
+    protected void testAdvance(int state) {
+        switch (state) {
+            case 0:
+                testIsOn(0);
+                break;
+            case 1:
+                testIsExpectedMode(1, Secure.LOCATION_MODE_BATTERY_SAVING);
+                break;
+            case 2:
+                testSecureProviderIsDisabled(2, LocationManager.GPS_PROVIDER);
+                break;
+            case 3:
+                testSecureProviderIsEnabled(3, LocationManager.NETWORK_PROVIDER);
+                break;
+            case 4:
+                testManagerProviderIsDisabled(4, LocationManager.GPS_PROVIDER);
+                break;
+            case 5:
+                testManagerProviderIsEnabled(5, LocationManager.NETWORK_PROVIDER);
+                break;
+        }
+    }
+}
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeDeviceOnlyTestActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeDeviceOnlyTestActivity.java
new file mode 100644
index 0000000..0ba9f76
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeDeviceOnlyTestActivity.java
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.location;
+
+import android.location.LocationManager;
+import android.provider.Settings.Secure;
+import com.android.cts.verifier.R;
+
+public class LocationModeDeviceOnlyTestActivity extends LocationModeTestActivity {
+
+    @Override
+    protected void createTestItems() {
+        createUserItem(R.string.location_mode_turn_on);
+        createUserItem(R.string.location_mode_select_device_only);
+        createAutoItem(R.string.location_mode_secure_gps_on);
+        createAutoItem(R.string.location_mode_secure_nlp_off);
+        createAutoItem(R.string.location_mode_manager_gps_on);
+        createAutoItem(R.string.location_mode_manager_nlp_off);
+    }
+
+    @Override
+    protected void setInfoResources() {
+        setInfoResources(R.string.location_mode_device_only_test,
+                R.string.location_mode_device_only_info, -1);
+    }
+
+    @Override
+    protected void testAdvance(int state) {
+        switch (state) {
+            case 0:
+                testIsOn(0);
+                break;
+            case 1:
+                testIsExpectedMode(1, Secure.LOCATION_MODE_SENSORS_ONLY);
+                break;
+            case 2:
+                testSecureProviderIsEnabled(2, LocationManager.GPS_PROVIDER);
+                break;
+            case 3:
+                testSecureProviderIsDisabled(3, LocationManager.NETWORK_PROVIDER);
+                break;
+            case 4:
+                testManagerProviderIsEnabled(4, LocationManager.GPS_PROVIDER);
+                break;
+            case 5:
+                testManagerProviderIsDisabled(5, LocationManager.NETWORK_PROVIDER);
+                break;
+        }
+    }
+}
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeHighAccuracyTestActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeHighAccuracyTestActivity.java
new file mode 100644
index 0000000..9c10705
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeHighAccuracyTestActivity.java
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.location;
+
+import android.location.LocationManager;
+import android.provider.Settings.Secure;
+import com.android.cts.verifier.R;
+
+public class LocationModeHighAccuracyTestActivity extends LocationModeTestActivity {
+
+    @Override
+    protected void createTestItems() {
+        createUserItem(R.string.location_mode_turn_on);
+        createUserItem(R.string.location_mode_select_high_accuracy);
+        createAutoItem(R.string.location_mode_secure_gps_on);
+        createAutoItem(R.string.location_mode_secure_nlp_on);
+        createAutoItem(R.string.location_mode_manager_gps_on);
+        createAutoItem(R.string.location_mode_manager_nlp_on);
+    }
+
+    @Override
+    protected void setInfoResources() {
+        setInfoResources(R.string.location_mode_high_accuracy_test,
+                R.string.location_mode_high_accuracy_info, -1);
+    }
+
+    @Override
+    protected void testAdvance(int state) {
+        switch (state) {
+            case 0:
+                testIsOn(0);
+                break;
+            case 1:
+                testIsExpectedMode(1, Secure.LOCATION_MODE_HIGH_ACCURACY);
+                break;
+            case 2:
+                testSecureProviderIsEnabled(2, LocationManager.GPS_PROVIDER);
+                break;
+            case 3:
+                testSecureProviderIsEnabled(3, LocationManager.NETWORK_PROVIDER);
+                break;
+            case 4:
+                testManagerProviderIsEnabled(4, LocationManager.GPS_PROVIDER);
+                break;
+            case 5:
+                testManagerProviderIsEnabled(5, LocationManager.NETWORK_PROVIDER);
+                break;
+        }
+    }
+}
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeOffTestActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeOffTestActivity.java
new file mode 100644
index 0000000..92b0742
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeOffTestActivity.java
@@ -0,0 +1,60 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.location;
+
+import android.location.LocationManager;
+import android.provider.Settings.Secure;
+import com.android.cts.verifier.R;
+
+public class LocationModeOffTestActivity extends LocationModeTestActivity {
+
+    @Override
+    protected void createTestItems() {
+        createUserItem(R.string.location_mode_turn_off);
+        createAutoItem(R.string.location_mode_secure_gps_off);
+        createAutoItem(R.string.location_mode_secure_nlp_off);
+        createAutoItem(R.string.location_mode_manager_gps_off);
+        createAutoItem(R.string.location_mode_manager_nlp_off);
+    }
+
+    @Override
+    protected void setInfoResources() {
+        setInfoResources(R.string.location_mode_off_test,
+                R.string.location_mode_off_info, -1);
+    }
+
+    @Override
+    protected void testAdvance(int state) {
+        switch (state) {
+            case 0:
+                testIsExpectedMode(0, Secure.LOCATION_MODE_OFF);
+                break;
+            case 1:
+                testSecureProviderIsDisabled(1, LocationManager.GPS_PROVIDER);
+                break;
+            case 2:
+                testSecureProviderIsDisabled(2, LocationManager.NETWORK_PROVIDER);
+                break;
+            case 3:
+                testManagerProviderIsDisabled(3, LocationManager.GPS_PROVIDER);
+                break;
+            case 4:
+                testManagerProviderIsDisabled(4, LocationManager.NETWORK_PROVIDER);
+                break;
+        }
+    }
+}
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeTestActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeTestActivity.java
new file mode 100644
index 0000000..1c3536b
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/location/LocationModeTestActivity.java
@@ -0,0 +1,262 @@
+/*
+ * Copyright (C) 2013 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 com.android.cts.verifier.location;
+
+import android.content.ContentResolver;
+import android.content.Context;
+import android.content.Intent;
+import android.location.LocationManager;
+import android.os.Bundle;
+import android.provider.Settings;
+import android.provider.Settings.Secure;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.ImageView;
+import android.widget.TextView;
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+/**
+ * Asks the user to put the device in one of the four location modes and then checks to see if
+ * {@link Secure#isLocationProviderEnabled(ContentResolver, String)} and {@link
+ * LocationManager#isProviderEnabled(String)} have the expected values for GPS and Wi-Fi. For
+ * example in battery saving mode, Wi-Fi should be on but GPS should be off.
+ *
+ * It would be hard to automate these tests because the {@link Secure#LOCATION_MODE} API is only
+ * accessible to apps in the system image. Furthermore, selecting two of the modes requires the user
+ * to accept the NLP confirmation dialog.
+ */
+public abstract class LocationModeTestActivity
+        extends PassFailButtons.Activity implements Runnable {
+
+    private static final String STATE = "state";
+    protected static final int PASS = 1;
+    protected static final int FAIL = 2;
+    protected static final int WAIT_FOR_USER = 3;
+
+    protected int mState;
+    protected int[] mStatus;
+    private LayoutInflater mInflater;
+    private ViewGroup mItemList;
+    private Runnable mRunner;
+    private View mHandler;
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+
+        if (savedInstanceState != null) {
+            mState = savedInstanceState.getInt(STATE, 0);
+        }
+
+        mRunner = this;
+        mInflater = getLayoutInflater();
+        View view = mInflater.inflate(R.layout.location_mode_main, null);
+        mItemList = (ViewGroup) view.findViewById(R.id.test_items);
+        mHandler = mItemList;
+
+        createTestItems();
+        mStatus = new int[mItemList.getChildCount()];
+        setContentView(view);
+
+        setPassFailButtonClickListeners();
+
+        setInfoResources();
+
+        getPassButton().setEnabled(false);
+    }
+
+    @Override
+    protected void onSaveInstanceState(Bundle outState) {
+        outState.putInt(STATE, mState);
+    }
+
+    @Override
+    protected void onResume() {
+        super.onResume();
+        next();
+    }
+
+    /**
+     * Template method used by the subclass to create the checks corresponding to each value of
+     * {@link #mState}. Subclass should call {@link #createUserItem(int)} and {@link
+     * #createAutoItem(int)} as appropriate to generate each item.
+     */
+    protected abstract void createTestItems();
+
+    /**
+     * Template method used by the subclass to call {@link #setInfoResources(int, int, int)} with
+     * the appropriate resources.
+     */
+    protected abstract void setInfoResources();
+
+    /**
+     * Subclass can call this to create a test step where the user must perform some action such
+     * as setting the location mode.
+     */
+    protected View createUserItem(int stringId) {
+        View item = mInflater.inflate(R.layout.location_mode_item, mItemList, false);
+        TextView instructions = (TextView) item.findViewById(R.id.instructions);
+        instructions.setText(stringId);
+        mItemList.addView(item);
+        return item;
+    }
+
+    /**
+     * Subclass can call this to create a test step where the test automatically evaluates whether
+     * an expected condition is satisfied, such as GPS is off.
+     */
+    protected View createAutoItem(int stringId) {
+        View item = mInflater.inflate(R.layout.location_mode_item, mItemList, false);
+        TextView instructions = (TextView) item.findViewById(R.id.instructions);
+        instructions.setText(stringId);
+        View button = item.findViewById(R.id.launch_settings);
+        button.setVisibility(View.GONE);
+        mItemList.addView(item);
+        return item;
+    }
+
+    /**
+     * Set the visible state of a test item to passed or failed.
+     */
+    private void setItemState(int index, boolean passed) {
+        ViewGroup item = (ViewGroup) mItemList.getChildAt(index);
+        ImageView status = (ImageView) item.findViewById(R.id.status);
+        status.setImageResource(passed ? R.drawable.fs_good : R.drawable.fs_error);
+        View button = item.findViewById(R.id.launch_settings);
+        button.setClickable(false);
+        button.setEnabled(false);
+        status.invalidate();
+    }
+
+    /**
+     * Set the visible state of a test item to waiting.
+     */
+    protected void markItemWaiting(int index) {
+        ViewGroup item = (ViewGroup) mItemList.getChildAt(index);
+        ImageView status = (ImageView) item.findViewById(R.id.status);
+        status.setImageResource(R.drawable.fs_warning);
+        status.invalidate();
+    }
+
+    /**
+     * Advances the state machine.
+     */
+    public void run() {
+        // Advance test state until we find case where it hasn't passed (yet)
+        while (mState < mStatus.length && mStatus[mState] != WAIT_FOR_USER) {
+            if (mStatus[mState] == PASS) {
+                setItemState(mState, true);
+                mState++;
+            } else if (mStatus[mState] == FAIL) {
+                setItemState(mState, false);
+                return;
+            } else {
+                break;
+            }
+        }
+
+        if (mState < mStatus.length && mStatus[mState] == WAIT_FOR_USER) {
+            markItemWaiting(mState);
+        }
+
+        testAdvance(mState);
+    }
+
+    /**
+     * Launches Locations &gt; Settings so the user can set the location mode. Public because it
+     * is referenced by layout.
+     */
+    public void launchSettings(View button) {
+        startActivity(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS));
+    }
+
+    /**
+     * Return to the state machine to progress through the tests.
+     */
+    protected void next() {
+        mHandler.post(mRunner);
+    }
+
+    /**
+     * Wait for things to settle before returning to the state machine.
+     */
+    protected void delay() {
+        mHandler.postDelayed(mRunner, 2000);
+    }
+
+    // Tests
+
+    private int getLocationMode() {
+        ContentResolver cr = getContentResolver();
+        return Secure.getInt(cr, Secure.LOCATION_MODE, Secure.LOCATION_MODE_OFF);
+    }
+
+    protected void testIsOn(int i) {
+        int mode = getLocationMode();
+        boolean passed = mode != Secure.LOCATION_MODE_OFF;
+        if (passed) {
+            mStatus[i] = PASS;
+        } else {
+            mStatus[i] = WAIT_FOR_USER;
+        }
+        next();
+    }
+
+    protected void testIsExpectedMode(int i, int expectedMode) {
+        int mode = getLocationMode();
+        boolean passed = mode == expectedMode;
+        if (passed) {
+            mStatus[i] = PASS;
+            next();
+        } else {
+            mStatus[i] = WAIT_FOR_USER;
+            delay();
+        }
+    }
+
+    protected void testSecureProviderIsEnabled(int i, String provider) {
+        ContentResolver cr = getContentResolver();
+        boolean enabled = Secure.isLocationProviderEnabled(cr, provider);
+        mStatus[i] = enabled ? PASS : FAIL;
+        next();
+    }
+
+    protected void testSecureProviderIsDisabled(int i, String provider) {
+        ContentResolver cr = getContentResolver();
+        boolean enabled = Secure.isLocationProviderEnabled(cr, provider);
+        mStatus[i] = !enabled ? PASS : FAIL;
+        next();
+    }
+
+    protected void testManagerProviderIsEnabled(int i, String gpsProvider) {
+        LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
+        boolean enabled = manager.isProviderEnabled(gpsProvider);
+        mStatus[i] = enabled ? PASS : FAIL;
+        next();
+    }
+
+    protected void testManagerProviderIsDisabled(int i, String gpsProvider) {
+        LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
+        boolean enabled = manager.isProviderEnabled(gpsProvider);
+        mStatus[i] = !enabled ? PASS : FAIL;
+        next();
+    }
+
+    protected abstract void testAdvance(int state);
+}
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/sample/SampleTestActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/sample/SampleTestActivity.java
new file mode 100644
index 0000000..25f90d9
--- /dev/null
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/sample/SampleTestActivity.java
@@ -0,0 +1,102 @@
+/*
+ * Copyright (C) 2014 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 com.android.cts.verifier.sample;
+
+import com.android.cts.verifier.PassFailButtons;
+import com.android.cts.verifier.R;
+
+import android.content.Intent;
+import android.net.Uri;
+import android.os.Bundle;
+import android.view.View;
+import android.widget.Button;
+
+import java.io.File;
+import java.io.FileOutputStream;
+
+/**
+ * A sample CTS Verifier test case for testing file transfers using bluetooth sharing.
+ *
+ * This test assumes bluetooth is turned on and the device is already paired with a second device.
+ * Note: the second device need not be an Android device; it could be a laptop or desktop.
+ */
+public class SampleTestActivity extends PassFailButtons.Activity {
+
+    /**
+     * The name of the test file being transferred.
+     */
+    private static final String FILE_NAME = "test.txt";
+
+    /**
+     * The content of the test file being transferred.
+     */
+    private static final String TEST_STRING = "Sample Test String";
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+
+        // Setup the UI.
+        setContentView(R.layout.pass_fail_sample);
+        setPassFailButtonClickListeners();
+        setInfoResources(R.string.sample_test, R.string.sample_test_info, -1);
+        // Get the share button and attach the listener.
+        Button shareBtn = (Button) findViewById(R.id.sample_share_btn);
+        shareBtn.setOnClickListener(new View.OnClickListener() {
+            @Override
+            public void onClick(View v) {
+                try {
+                    createFileAndShare();
+                } catch (Exception e) {
+                    e.printStackTrace();
+                }
+            }
+        });
+    }
+
+    /**
+     * Creates a temporary file containing the test string and then issues the intent to share it.
+     *
+     * @throws Exception
+     */
+    private void createFileAndShare() throws Exception {
+        // Use the external cache directory so the file will be deleted when the app is uninstalled
+        // and the file can be accessed by other apps, such as the sharing app.
+        File dir = getExternalCacheDir ();
+        // Create the file with the given name.
+        File file = new File(dir, FILE_NAME);
+        FileOutputStream outputStream = null;
+        try {
+            // Write the test string to the test file.
+            outputStream = new FileOutputStream(file);
+            outputStream.write(TEST_STRING.getBytes());
+
+            // Create the share intent.
+            Intent intent = new Intent();
+            intent.setAction(Intent.ACTION_SEND);
+            intent.setType("text/plain");
+            intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
+            startActivity(intent);
+        } finally {
+            // Clean up.
+            if (outputStream != null) {
+                outputStream.close();
+            }
+        }
+
+    }
+}
diff --git a/build/test_package.mk b/build/test_package.mk
index 73f2a13..a0adb5f 100644
--- a/build/test_package.mk
+++ b/build/test_package.mk
@@ -36,12 +36,12 @@
 $(cts_package_xml): PRIVATE_PATH := $(LOCAL_PATH)
 $(cts_package_xml): PRIVATE_INSTRUMENTATION := $(LOCAL_INSTRUMENTATION_FOR)
 $(cts_package_xml): PRIVATE_PACKAGE := $(LOCAL_PACKAGE_NAME)
-ifneq ($(filter cts/suite/cts/%, $(LOCAL_PATH)),) # CTS
-PRIVATE_CTS_TEST_PACKAGE_NANE_ := com.android.cts.$(notdir $(LOCAL_PATH))
-else # CTS
-PRIVATE_CTS_TEST_PACKAGE_NANE_ := android.$(notdir $(LOCAL_PATH))
-endif # CTS
-$(cts_package_xml): PRIVATE_TEST_PACKAGE := $(PRIVATE_CTS_TEST_PACKAGE_NANE_)
+ifneq ($(filter cts/suite/cts/%, $(LOCAL_PATH)),)
+PRIVATE_CTS_TEST_PACKAGE_NAME_ := com.android.cts.$(notdir $(LOCAL_PATH))
+else
+PRIVATE_CTS_TEST_PACKAGE_NAME_ := android.$(notdir $(LOCAL_PATH))
+endif
+$(cts_package_xml): PRIVATE_TEST_PACKAGE := $(PRIVATE_CTS_TEST_PACKAGE_NAME_)
 $(cts_package_xml): PRIVATE_MANIFEST := $(LOCAL_PATH)/AndroidManifest.xml
 $(cts_package_xml): PRIVATE_TEST_TYPE := $(if $(LOCAL_CTS_TEST_RUNNER),$(LOCAL_CTS_TEST_RUNNER),'')
 $(cts_package_xml): $(call intermediates-dir-for,APPS,$(LOCAL_PACKAGE_NAME))/package.apk $(CTS_EXPECTATIONS) $(CTS_JAVA_TEST_SCANNER_DOCLET) $(CTS_JAVA_TEST_SCANNER) $(CTS_XML_GENERATOR)
diff --git a/hostsidetests/sample/Android.mk b/hostsidetests/sample/Android.mk
new file mode 100644
index 0000000..1d3ddc8
--- /dev/null
+++ b/hostsidetests/sample/Android.mk
@@ -0,0 +1,32 @@
+# Copyright (C) 2014 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)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_MODULE_TAGS := optional
+
+# Must match the package name in CtsTestCaseList.mk
+LOCAL_MODULE := CtsSampleHostTestCases
+
+LOCAL_JAVA_LIBRARIES := cts-tradefed ddmlib-prebuilt tradefed-prebuilt
+
+LOCAL_CTS_TEST_PACKAGE := android.host.sample
+
+include $(BUILD_CTS_HOST_JAVA_LIBRARY)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/hostsidetests/sample/app/Android.mk b/hostsidetests/sample/app/Android.mk
new file mode 100644
index 0000000..4af45b9
--- /dev/null
+++ b/hostsidetests/sample/app/Android.mk
@@ -0,0 +1,31 @@
+# Copyright (C) 2014 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
+
+# When built, explicitly put it in the data partition.
+LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_PACKAGE_NAME := CtsSampleDeviceApp
+
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_CTS_PACKAGE)
diff --git a/hostsidetests/sample/app/AndroidManifest.xml b/hostsidetests/sample/app/AndroidManifest.xml
new file mode 100755
index 0000000..c087435
--- /dev/null
+++ b/hostsidetests/sample/app/AndroidManifest.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ * Copyright (C) 2014 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="android.sample.app">
+
+    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
+    <application>
+        <activity android:name=".SampleDeviceActivity" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+    </application>
+
+</manifest>
+
diff --git a/hostsidetests/sample/app/src/android/sample/app/SampleDeviceActivity.java b/hostsidetests/sample/app/src/android/sample/app/SampleDeviceActivity.java
new file mode 100644
index 0000000..d7efc0c
--- /dev/null
+++ b/hostsidetests/sample/app/src/android/sample/app/SampleDeviceActivity.java
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2014 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.sample.app;
+
+import android.app.Activity;
+import android.os.Bundle;
+import android.util.Log;
+
+import java.lang.Override;
+
+/**
+ * A simple activity which logs to Logcat.
+ */
+public class SampleDeviceActivity extends Activity {
+
+    private static final String TAG = SampleDeviceActivity.class.getSimpleName();
+
+    /**
+     * The test string to log.
+     */
+    private static final String TEST_STRING = "SampleTestString";
+
+    @Override
+    public void onCreate(Bundle icicle) {
+        super.onCreate(icicle);
+        // Log the test string to Logcat.
+        Log.i(TAG, TEST_STRING);
+    }
+
+}
diff --git a/hostsidetests/sample/src/android/sample/cts/SampleHostResultTest.java b/hostsidetests/sample/src/android/sample/cts/SampleHostResultTest.java
new file mode 100644
index 0000000..a3bc08f
--- /dev/null
+++ b/hostsidetests/sample/src/android/sample/cts/SampleHostResultTest.java
@@ -0,0 +1,148 @@
+/*
+ * Copyright (C) 2014 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.sample.cts;
+
+import com.android.cts.tradefed.build.CtsBuildHelper;
+import com.android.cts.tradefed.util.HostReportLog;
+import com.android.cts.util.MeasureRun;
+import com.android.cts.util.MeasureTime;
+import com.android.cts.util.ResultType;
+import com.android.cts.util.ResultUnit;
+import com.android.cts.util.ReportLog;
+import com.android.cts.util.Stat;
+import com.android.ddmlib.Log;
+import com.android.ddmlib.IDevice;
+import com.android.tradefed.build.IBuildInfo;
+import com.android.tradefed.device.ITestDevice;
+import com.android.tradefed.testtype.DeviceTestCase;
+import com.android.tradefed.testtype.IBuildReceiver;
+import com.android.tradefed.util.CommandResult;
+import com.android.tradefed.util.CommandStatus;
+import com.android.tradefed.util.FileUtil;
+import com.android.tradefed.util.RunUtil;
+
+import java.io.File;
+import java.lang.Exception;
+
+/**
+ * Test to measure the transfer time of a file from the host to the device.
+ */
+public class SampleHostResultTest extends DeviceTestCase implements IBuildReceiver {
+
+    private static final String TAG = SampleHostResultTest.class.getSimpleName();
+
+    /**
+     * The number of times to repeat the test.
+     */
+    private static final int REPEAT = 5;
+
+    /**
+     * The name of the plan to transfer.
+     *
+     * In this case we will transfer the CTS.xml file.
+     */
+    private static final String PLAN_NAME = "CTS";
+
+    /**
+     * A reference to the build.
+     */
+    private CtsBuildHelper mBuild;
+
+    /**
+     * A reference to the device under test.
+     */
+    private ITestDevice mDevice;
+
+    @Override
+    public void setBuild(IBuildInfo buildInfo) {
+        // Get the build, this is used to access the APK.
+        mBuild = CtsBuildHelper.createBuildHelper(buildInfo);
+    }
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        // Get the device, this gives a handle to run commands and install APKs.
+        mDevice = getDevice();
+    }
+
+    /**
+     * Measures the time taken to transfer a file to the device and then back.
+     *
+     * The workload is repeated several times and the report is populated with the result.
+     *
+     * @throws Exception
+     */
+    public void testTransferTime() throws Exception {
+        final ITestDevice device = mDevice;
+        // Get the external storage location and ensure its not null.
+        final String externalStorePath = mDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE);
+        assertNotNull("External storage location no found", externalStorePath);
+        // Create the device side path where the file will be transfered.
+        final String devicePath = String.format("%s/%s", externalStorePath, "tmp_testPushPull.txt");
+        // Get the file from the build.
+        final File testFile = mBuild.getTestPlanFile(PLAN_NAME);
+        double[] result = MeasureTime.measure(REPEAT, new MeasureRun() {
+            @Override
+            public void prepare(int i) throws Exception {
+                device.executeShellCommand(String.format("rm %s", devicePath));
+            }
+            @Override
+            public void run(int i) throws Exception {
+                // Create a temporary file to compare with.
+                File tmpFile = FileUtil.createTempFile("tmp", "txt");
+                try {
+                    // Push the file across and ensure it exists.
+                    assertTrue("Could not push file", device.pushFile(testFile, devicePath));
+                    assertTrue("Unsuccessful transfer", device.doesFileExist(devicePath));
+                    // Pull the file back and ensure it is the same.
+                    assertTrue("Could not pull file", device.pullFile(devicePath, tmpFile));
+                    assertFilesAreEqual(testFile, tmpFile);
+                } finally {
+                    // Clean up.
+                    tmpFile.delete();
+                    device.executeShellCommand(String.format("rm %s", devicePath));
+                }
+            }
+        });
+        // Compute the stats.
+        Stat.StatResult stat = Stat.getStat(result);
+        // Get the report for this test and add the results to record.
+        HostReportLog report = new HostReportLog(mDevice.getSerialNumber(),
+                ReportLog.getClassMethodNames());
+        report.printArray("Times", result, ResultType.LOWER_BETTER, ResultUnit.MS);
+        report.printValue("Min", stat.mMin, ResultType.LOWER_BETTER, ResultUnit.MS);
+        report.printValue("Max", stat.mMax, ResultType.LOWER_BETTER, ResultUnit.MS);
+        // Every report must have a summary,
+        report.printSummary("Average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS);
+        // Send the report to Tradefed.
+        report.deliverReportToHost();
+    }
+
+    /**
+     * Asserts the two given files are equal using the diff utility.
+     *
+     * @throws Exception
+     */
+    private static void assertFilesAreEqual(File first, File second) throws Exception {
+        CommandResult result = RunUtil.getDefault().runTimedCmd(5000, "diff",
+                first.getAbsolutePath(), second.getAbsolutePath());
+        assertTrue("Diff failed to run", result.getStatus() == CommandStatus.SUCCESS);
+        assertTrue("Files are not equivalent", "".equals(result.getStdout()));
+    }
+
+}
diff --git a/hostsidetests/sample/src/android/sample/cts/SampleHostTest.java b/hostsidetests/sample/src/android/sample/cts/SampleHostTest.java
new file mode 100644
index 0000000..7ccde0e
--- /dev/null
+++ b/hostsidetests/sample/src/android/sample/cts/SampleHostTest.java
@@ -0,0 +1,124 @@
+/*
+ * Copyright (C) 2014 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.sample.cts;
+
+import com.android.cts.tradefed.build.CtsBuildHelper;
+import com.android.tradefed.build.IBuildInfo;
+import com.android.tradefed.device.ITestDevice;
+import com.android.tradefed.testtype.DeviceTestCase;
+import com.android.tradefed.testtype.IBuildReceiver;
+
+import java.io.File;
+import java.lang.String;
+import java.util.Scanner;
+
+/**
+ * Test to check the APK logs to Logcat.
+ *
+ * When this test builds, it also builds {@see android.sample.app.SampleDeviceActivity} into an APK
+ * which it then installs at runtime and starts. The activity simply prints a message to Logcat and
+ * then gets uninstalled.
+ */
+public class SampleHostTest extends DeviceTestCase implements IBuildReceiver {
+
+    /**
+     * The package name of the APK.
+     */
+    private static final String PACKAGE = "android.sample.app";
+
+    /**
+     * The file name of the APK.
+     */
+    private static final String APK = "CtsSampleDeviceApp.apk";
+
+    /**
+     * The class name of the main activity in the APK.
+     */
+    private static final String CLASS = "SampleDeviceActivity";
+
+    /**
+     * The command to launch the main activity.
+     */
+    private static final String START_COMMAND = String.format(
+            "am start -W -a android.intent.action.MAIN -n %s/%s.%s", PACKAGE, PACKAGE, CLASS);
+
+    /**
+     * The test string to look for.
+     */
+    private static final String TEST_STRING = "SampleTestString";
+
+    /**
+     * A reference to the build.
+     */
+    private CtsBuildHelper mBuild;
+
+    /**
+     * A reference to the device under test.
+     */
+    private ITestDevice mDevice;
+
+    @Override
+    public void setBuild(IBuildInfo buildInfo) {
+        // Get the build, this is used to access the APK.
+        mBuild = CtsBuildHelper.createBuildHelper(buildInfo);
+    }
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        // Get the device, this gives a handle to run commands and install APKs.
+        mDevice = getDevice();
+        // Remove any previously installed versions of this APK.
+        mDevice.uninstallPackage(PACKAGE);
+        // Get the APK from the build.
+        File app = mBuild.getTestApp(APK);
+        // Install the APK on the device.
+        mDevice.installPackage(app, false);
+    }
+
+    @Override
+    protected void tearDown() throws Exception {
+        // Remove the package once complete.
+        mDevice.uninstallPackage(PACKAGE);
+        super.tearDown();
+    }
+
+    /**
+     * Tests the string was successfully logged to Logcat from the activity.
+     *
+     * @throws Exception
+     */
+    public void testLogcat() throws Exception {
+        // Clear logcat.
+        mDevice.executeAdbCommand("logcat", "-c");
+        // Start the APK and wait for it to complete.
+        mDevice.executeShellCommand(START_COMMAND);
+        // Dump logcat.
+        String logs = mDevice.executeAdbCommand("logcat", "-d", CLASS + ":I", "*:S");
+        // Search for string.
+        String testString = "";
+        Scanner in = new Scanner(logs);
+        while (in.hasNextLine()) {
+            String line = in.nextLine();
+            if(line.startsWith("I/"+CLASS)) {
+                testString = line.split(":")[1].trim();
+            }
+        }
+        // Assert the logged string matches the test string.
+        assertEquals("Incorrect test string", TEST_STRING, testString);
+    }
+}
diff --git a/libs/commonutil/src/com/android/cts/util/MeasureTime.java b/libs/commonutil/src/com/android/cts/util/MeasureTime.java
index c158228..fd22ef2 100644
--- a/libs/commonutil/src/com/android/cts/util/MeasureTime.java
+++ b/libs/commonutil/src/com/android/cts/util/MeasureTime.java
@@ -23,9 +23,9 @@
      * @param count
      * @param run
      * @return array of time taken in each run in msec.
-     * @throws IOException
+     * @throws Exception
      */
-    public static double[] measure(int count, MeasureRun run)  throws Exception {
+    public static double[] measure(int count, MeasureRun run) throws Exception {
         double[] result = new double[count];
 
         for (int i = 0; i < count; i++) {
diff --git a/tests/sample/Android.mk b/tests/sample/Android.mk
new file mode 100755
index 0000000..e1a9408
--- /dev/null
+++ b/tests/sample/Android.mk
@@ -0,0 +1,37 @@
+# Copyright (C) 2014 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
+
+# When built, explicitly put it in the data partition.
+LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
+
+# All tests should include android.test.runner.
+LOCAL_JAVA_LIBRARIES := android.test.runner
+
+LOCAL_STATIC_JAVA_LIBRARIES := ctsdeviceutil ctstestrunner
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+# Must match the package name in CtsTestCaseList.mk
+LOCAL_PACKAGE_NAME := CtsSampleDeviceTestCases
+
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_CTS_PACKAGE)
diff --git a/tests/sample/AndroidManifest.xml b/tests/sample/AndroidManifest.xml
new file mode 100755
index 0000000..ae58f0a
--- /dev/null
+++ b/tests/sample/AndroidManifest.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ * Copyright (C) 2014 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="android.sample.cts">
+
+    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
+    <application>
+        <uses-library android:name="android.test.runner" />
+        <activity android:name="android.sample.SampleDeviceActivity" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+    </application>
+
+    <!--  self-instrumenting test package. -->
+    <instrumentation
+        android:name="android.test.InstrumentationCtsTestRunner"
+        android:label="CTS sample tests"
+        android:targetPackage="android.sample.cts" />
+
+</manifest>
+
diff --git a/tests/sample/src/android/sample/SampleDeviceActivity.java b/tests/sample/src/android/sample/SampleDeviceActivity.java
new file mode 100644
index 0000000..8fd8fde
--- /dev/null
+++ b/tests/sample/src/android/sample/SampleDeviceActivity.java
@@ -0,0 +1,78 @@
+/*
+ * Copyright (C) 2014 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.sample;
+
+import android.app.Activity;
+import android.content.Context;
+import android.content.SharedPreferences;
+import android.content.SharedPreferences.Editor;
+import android.os.Bundle;
+
+import java.lang.Override;
+
+/**
+ * A simple activity for using the SharedPreferences API.
+ */
+public class SampleDeviceActivity extends Activity {
+
+    private SharedPreferences mPreferences;
+
+    @Override
+    public void onCreate(Bundle icicle) {
+        super.onCreate(icicle);
+        // Get a reference to this context's shared preference.
+        mPreferences = getPreferences(Context.MODE_PRIVATE);
+    }
+
+    /**
+     * Saves the given key value pair to the shared preferences.
+     *
+     * @param key
+     * @param value
+     */
+    public void savePreference(String key, String value) {
+        // Get an editor to modify the preferences.
+        Editor editor = mPreferences.edit();
+        // Insert the key value pair.
+        editor.putString(key, value);
+        // Commit the changes - important.
+        editor.commit();
+    }
+
+    /**
+     * Looks up the given key in the shared preferences.
+     *
+     * @param key
+     * @return
+     */
+    public String getPreference(String key) {
+        return mPreferences.getString(key, null);
+    }
+
+    /**
+     * Deletes all entries in the shared preferences.
+     */
+    public void clearPreferences() {
+        // Get an editor to modify the preferences.
+        Editor editor = mPreferences.edit();
+        // Delete all entries.
+        editor.clear();
+        // Commit the changes - important.
+        editor.commit();
+    }
+
+}
diff --git a/tests/sample/src/android/sample/cts/SampleDeviceResultTest.java b/tests/sample/src/android/sample/cts/SampleDeviceResultTest.java
new file mode 100644
index 0000000..6bf883f
--- /dev/null
+++ b/tests/sample/src/android/sample/cts/SampleDeviceResultTest.java
@@ -0,0 +1,122 @@
+/*
+ * Copyright (C) 2014 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.sample.cts;
+
+import com.android.cts.util.MeasureRun;
+import com.android.cts.util.MeasureTime;
+import com.android.cts.util.ReportLog;
+import com.android.cts.util.ResultType;
+import com.android.cts.util.ResultUnit;
+import com.android.cts.util.Stat;
+
+import android.cts.util.CtsAndroidTestCase;
+
+/**
+ * A simple compatibility test which includes results in the report.
+ *
+ * This test measures the time taken to run a workload and adds in the report.
+ */
+public class SampleDeviceResultTest extends CtsAndroidTestCase {
+
+    /**
+     * The number of times to repeat the test.
+     */
+    private static final int REPEAT = 5;
+
+    /**
+     * The input number for the factorial.
+     */
+    private static final int IN = 15;
+
+    /**
+     * The expected output number for the factorial.
+     */
+    private static final long OUT = 1307674368000L;
+
+    /**
+     * Measures the time taken to compute the factorial of 15 with a recursive method.
+     *
+     * @throws Exception
+     */
+    public void testFactorialRecursive() throws Exception {
+        runTest(new MeasureRun() {
+            @Override
+            public void run(int i) throws Exception {
+                // Compute the factorial and assert it is correct.
+                assertEquals("Incorrect result", OUT, factorialRecursive(IN));
+            }
+        });
+    }
+
+    /**
+     * Measures the time taken to compute the factorial of 15 with a iterative method.
+     *
+     * @throws Exception
+     */
+    public void testFactorialIterative() throws Exception {
+        runTest(new MeasureRun() {
+            @Override
+            public void run(int i) throws Exception {
+                // Compute the factorial and assert it is correct.
+                assertEquals("Incorrect result", OUT, factorialIterative(IN));
+            }
+        });
+    }
+
+    /**
+     * Computes the factorial of a number with a recursive method.
+     *
+     * @param num The number to compute the factorial of.
+     */
+    private static long factorialRecursive(int num) {
+        if (num <= 0) {
+            return 1;
+        }
+        return num * factorialRecursive(num - 1);
+    }
+
+    /**
+     * Computes the factorial of a number with a iterative method.
+     *
+     * @param num The number to compute the factorial of.
+     */
+    private static long factorialIterative(int num) {
+        long result = 1;
+        for (int i = 2; i <= num; i++) {
+            result *= i;
+        }
+        return result;
+    }
+
+    /**
+     * Runs the workload and records the result to the report log.
+     *
+     * @param workload
+     */
+    private void runTest(MeasureRun workload) throws Exception {
+        // MeasureTime runs the workload N times and records the time taken by each run.
+        double[] result = MeasureTime.measure(REPEAT, workload);
+        // Compute the stats.
+        Stat.StatResult stat = Stat.getStat(result);
+        // Get the report for this test and add the results to record.
+        ReportLog log = getReportLog();
+        log.printArray("Times", result, ResultType.LOWER_BETTER, ResultUnit.MS);
+        log.printValue("Min", stat.mMin, ResultType.LOWER_BETTER, ResultUnit.MS);
+        log.printValue("Max", stat.mMax, ResultType.LOWER_BETTER, ResultUnit.MS);
+        // Every report must have a summary,
+        log.printSummary("Average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS);
+    }
+}
diff --git a/tests/sample/src/android/sample/cts/SampleDeviceTest.java b/tests/sample/src/android/sample/cts/SampleDeviceTest.java
new file mode 100644
index 0000000..13b7ea6
--- /dev/null
+++ b/tests/sample/src/android/sample/cts/SampleDeviceTest.java
@@ -0,0 +1,76 @@
+/*
+ * Copyright (C) 2014 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.sample.cts;
+
+import android.sample.SampleDeviceActivity;
+import android.test.ActivityInstrumentationTestCase2;
+
+/**
+ * A simple compatibility test which tests the SharedPreferences API.
+ *
+ * This test uses {@link android.test.ActivityInstrumentationTestCase2} to instrument the
+ * {@link android.sample.SampleDeviceActivity}.
+ */
+public class SampleDeviceTest extends ActivityInstrumentationTestCase2<SampleDeviceActivity> {
+
+    private static final String KEY = "foo";
+
+    private static final String VALUE = "bar";
+
+    /**
+     * A reference to the activity whose shared preferences are being tested.
+     */
+    private SampleDeviceActivity mActivity;
+
+    public SampleDeviceTest() {
+        super(SampleDeviceActivity.class);
+    }
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        // Start the activity and get a reference to it.
+        mActivity = getActivity();
+        // Wait for the UI Thread to become idle.
+        getInstrumentation().waitForIdleSync();
+    }
+
+    @Override
+    protected void tearDown() throws Exception {
+        // Scrub the activity so it can be freed. The next time the setUp will create a new activity
+        // rather than reusing the old one.
+        mActivity = null;
+        super.tearDown();
+    }
+
+    /**
+     * Tests the SharedPreferences API.
+     *
+     * This inserts the key value pair and assert they can be retrieved. Then it clears the
+     * preferences and asserts they can no longer be retrieved.
+     *
+     * @throws Exception
+     */
+    public void testSharedPreferences() throws Exception {
+        // Save the key value pair to the preferences and assert they were saved.
+        mActivity.savePreference(KEY, VALUE);
+        assertEquals("Preferences were not saved", VALUE, mActivity.getPreference(KEY));
+
+        // Clear the shared preferences and assert the data was removed.
+        mActivity.clearPreferences();
+        assertNull("Preferences were not cleared", mActivity.getPreference(KEY));
+    }
+}
diff --git a/tests/tests/app/src/android/app/cts/ActivityManagerMemoryClassTest.java b/tests/tests/app/src/android/app/cts/ActivityManagerMemoryClassTest.java
index 622055c..408efe7 100644
--- a/tests/tests/app/src/android/app/cts/ActivityManagerMemoryClassTest.java
+++ b/tests/tests/app/src/android/app/cts/ActivityManagerMemoryClassTest.java
@@ -90,10 +90,18 @@
                 expectedMinimumMemory = isXLarge ? 128 : 64;
                 break;
 
+            case DisplayMetrics.DENSITY_400:
+                expectedMinimumMemory = isXLarge ? 192 : 128;
+                break;
+
             case DisplayMetrics.DENSITY_XXHIGH:
                 expectedMinimumMemory = isXLarge ? 256 : 128;
                 break;
 
+            case DisplayMetrics.DENSITY_XXXHIGH:
+                expectedMinimumMemory = isXLarge ? 512 : 256;
+                break;
+
             default:
                 throw new IllegalArgumentException("No memory requirement specified "
                         + " for screen density " + screenDensity);
diff --git a/tests/tests/app/src/android/app/cts/SystemFeaturesTest.java b/tests/tests/app/src/android/app/cts/SystemFeaturesTest.java
index 012148d..2c9d648 100644
--- a/tests/tests/app/src/android/app/cts/SystemFeaturesTest.java
+++ b/tests/tests/app/src/android/app/cts/SystemFeaturesTest.java
@@ -337,6 +337,7 @@
         ConfigurationInfo configInfo = mActivityManager.getDeviceConfigurationInfo();
         if (configInfo.reqTouchScreen != Configuration.TOUCHSCREEN_NOTOUCH) {
             assertAvailable(PackageManager.FEATURE_TOUCHSCREEN);
+            assertAvailable(PackageManager.FEATURE_FAKETOUCH);
         } else {
             assertNotAvailable(PackageManager.FEATURE_TOUCHSCREEN);
         }
diff --git a/tests/tests/dpi/src/android/dpi/cts/AspectRatioTest.java b/tests/tests/dpi/src/android/dpi/cts/AspectRatioTest.java
index 74a9f22..572c3f4 100644
--- a/tests/tests/dpi/src/android/dpi/cts/AspectRatioTest.java
+++ b/tests/tests/dpi/src/android/dpi/cts/AspectRatioTest.java
@@ -40,46 +40,27 @@
     }
 
     /**
-     * Get all the aspect rations in different orientations. They could be
-     * different due to the system bar being different sizes. Test that
-     * one of the aspect ratios is within the range.
+     * Get the full screen size directly (including system bar) to calculate
+     * aspect ratio. With this, the screen orientation doesn't affect the aspect
+     * ratio value anymore. Test that the aspect ratio is within the range.
      */
     public void testAspectRatio() throws Exception {
-        List<Double> aspectRatios = getAllAspectRatios();
-        for (double aspectRatio : aspectRatios) {
-            if (aspectRatio >= 1.333 && aspectRatio <= 1.86) {
-                return;
-            }
+        double aspectRatio = getRealAspectRatio(getActivity());
+        if (aspectRatio >= 1.333 && aspectRatio <= 1.86) {
+            return;
         }
-        fail("Aspect ratios were not between 1.333 and 1.86: " + aspectRatios);
+        fail("Aspect ratio was not between 1.333 and 1.86: " + aspectRatio);
     }
 
-    private List<Double> getAllAspectRatios() throws Exception {
-        List<Double> aspectRatios = new ArrayList<Double>();
-        for (int i = 0; i < ORIENTATIONS.length; i++) {
-            Activity activity = startOrientationActivity(ORIENTATIONS[i]);
-            aspectRatios.add(getAspectRatio(activity));
-            tearDown();
-        }
-        return aspectRatios;
-    }
-
-    private double getAspectRatio(Context context) {
+    private double getRealAspectRatio(Context context) {
         WindowManager windowManager =
                 (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
         Display display = windowManager.getDefaultDisplay();
         DisplayMetrics metrics = new DisplayMetrics();
-        display.getMetrics(metrics);
+        display.getRealMetrics(metrics);
 
         int max = Math.max(metrics.widthPixels, metrics.heightPixels);
         int min = Math.min(metrics.widthPixels, metrics.heightPixels);
         return (double) max / min;
     }
-
-    private Activity startOrientationActivity(int orientation) {
-        Intent intent = new Intent();
-        intent.putExtra(OrientationActivity.EXTRA_ORIENTATION, orientation);
-        setActivityIntent(intent);
-        return getActivity();
-    }
 }
diff --git a/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java b/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
index 6f26b6e..4ecabc5 100644
--- a/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
+++ b/tests/tests/dpi/src/android/dpi/cts/ConfigurationTest.java
@@ -52,7 +52,9 @@
         allowedDensities.add(DisplayMetrics.DENSITY_TV);
         allowedDensities.add(DisplayMetrics.DENSITY_HIGH);
         allowedDensities.add(DisplayMetrics.DENSITY_XHIGH);
+        allowedDensities.add(DisplayMetrics.DENSITY_400);
         allowedDensities.add(DisplayMetrics.DENSITY_XXHIGH);
+        allowedDensities.add(DisplayMetrics.DENSITY_XXXHIGH);
         assertTrue("DisplayMetrics#densityDpi must be one of the DisplayMetrics.DENSITY_* values: "
                 + allowedDensities, allowedDensities.contains(metrics.densityDpi));
 
diff --git a/tests/tests/example/Android.mk b/tests/tests/example/Android.mk
deleted file mode 100644
index c6ef67b..0000000
--- a/tests/tests/example/Android.mk
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright (C) 2009 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)
-
-# Replace "Example" with your name.
-LOCAL_PACKAGE_NAME := CtsExampleTestCases
-
-# Don't include this package in any target.
-LOCAL_MODULE_TAGS := optional
-
-# When built, explicitly put it in the data partition.
-LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
-
-# All tests should include android.test.runner.
-LOCAL_JAVA_LIBRARIES := android.test.runner
-
-LOCAL_STATIC_JAVA_LIBRARIES := ctstestrunner
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_SDK_VERSION := current
-
-include $(BUILD_CTS_PACKAGE)
diff --git a/tests/tests/example/AndroidManifest.xml b/tests/tests/example/AndroidManifest.xml
deleted file mode 100644
index ba41cce..0000000
--- a/tests/tests/example/AndroidManifest.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2009 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.
--->
-
-<!-- Replace all the "example" stuff below with your package name, and
-     remove this comment.
--->
-
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.android.cts.example">
-
-    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
-    <application>
-        <uses-library android:name="android.test.runner" />
-    </application>
-
-    <!-- This is a self-instrumenting test package. -->
-    <instrumentation android:name="android.test.InstrumentationCtsTestRunner"
-                     android:targetPackage="com.android.cts.example"
-                     android:label="CTS tests of example component"/>
-
-</manifest>
-
diff --git a/tests/tests/example/src/android/example/Example.java b/tests/tests/example/src/android/example/Example.java
deleted file mode 100644
index bc22d9a..0000000
--- a/tests/tests/example/src/android/example/Example.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2009 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.example;
-
-/**
- * Example class being tested. In a real test, the classes to test would
- * live somewhere other than in the test package, but for the sake of
- * brevity, we include this one here instead.
- */
-public class Example {
-    /**
-     * Return the standard string indication of a successfuly blorting.
-     *
-     * @returns {@code "blort"}, always
-     */
-    public static String blort() {
-        return "blort";
-    }
-
-    /**
-     * Return the standard string indication of a successfuly zorching.
-     *
-     * @returns {@code "zorch"}, always
-     */
-    public static String zorch() {
-        return "zorch";
-    }
-}
diff --git a/tests/tests/example/src/android/example/cts/ExampleSecondaryTest.java b/tests/tests/example/src/android/example/cts/ExampleSecondaryTest.java
deleted file mode 100644
index d2b78dc..0000000
--- a/tests/tests/example/src/android/example/cts/ExampleSecondaryTest.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2009 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.example.cts;
-
-import android.example.Example;
-
-import junit.framework.TestCase;
-
-/**
- * Example test to demonstrate how tests work as well as to serve as a
- * smoke test for the CTS. This secondary test exists to demonstrate
- * that you may have more than one test class. Typically you will
- * separate your test classes by what class or major piece of
- * functionality is being tested.
- */
-public class ExampleSecondaryTest extends TestCase {
-    /*
-     * You can define standard JUnit setUp() and tearDown() methods here,
-     * if needed.
-     *
-     * @Override protected void setUp() throws Exception { ... }
-     * @Override protected void tearDown() throws Exception { ... }
-     */
-
-    /**
-     * Test {@link Example#zorch}.
-     */
-    public void testZorch() {
-        assertEquals("zorch", Example.zorch());
-    }
-
-    // Add more tests here.
-}
diff --git a/tests/tests/example/src/android/example/cts/ExampleTest.java b/tests/tests/example/src/android/example/cts/ExampleTest.java
deleted file mode 100644
index db907cc..0000000
--- a/tests/tests/example/src/android/example/cts/ExampleTest.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright (C) 2009 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.example.cts;
-
-import android.example.Example;
-
-import junit.framework.TestCase;
-
-/**
- * Example test to demonstrate how tests work as well as to serve as
- * a smoke test for the CTS. (If the example test is "broken," then it
- * probably means that there's something fundamentally wrong with your
- * setup.)
- */
-public class ExampleTest extends TestCase {
-    /*
-     * You can define standard JUnit setUp() and tearDown() methods here,
-     * if needed.
-     *
-     * @Override protected void setUp() throws Exception { ... }
-     * @Override protected void tearDown() throws Exception { ... }
-     */
-
-    /**
-     * Test {@link Example#blort}.
-     */
-    public void testBlort() {
-        assertEquals("blort", Example.blort());
-    }
-
-    // Add more tests here.
-}
diff --git a/tests/tests/graphics/src/android/opengl/cts/EglContextTest.java b/tests/tests/graphics/src/android/opengl/cts/EglContextTest.java
new file mode 100644
index 0000000..8f5ced7
--- /dev/null
+++ b/tests/tests/graphics/src/android/opengl/cts/EglContextTest.java
@@ -0,0 +1,162 @@
+/*
+ * Copyright (C) 2013 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.opengl.cts;
+
+import android.app.Activity;
+import android.opengl.EGL14;
+import android.opengl.EGLConfig;
+import android.opengl.EGLContext;
+import android.opengl.EGLDisplay;
+import android.opengl.GLES20;
+import android.test.ActivityInstrumentationTestCase2;
+
+/**
+ * Tests using EGL contexts.
+ */
+public class EglContextTest extends ActivityInstrumentationTestCase2<Activity> {
+
+    public EglContextTest() {
+        super(Activity.class);
+    }
+
+    /**
+     * Tests creating then releasing an EGL context.
+     */
+    public void testCreateAndReleaseContext() {
+        EGLDisplay eglDisplay = null;
+        EGLContext eglContext = null;
+        try {
+            eglDisplay = createEglDisplay();
+            eglContext = createEglContext(eglDisplay);
+            destroyEglContext(eglDisplay, eglContext);
+            eglDisplay = null;
+            eglContext = null;
+        } finally {
+            if (eglDisplay != null) {
+                if (eglContext != null) {
+                    EGL14.eglDestroyContext(eglDisplay, eglContext);
+                }
+
+                EGL14.eglTerminate(eglDisplay);
+            }
+        }
+    }
+
+    /**
+     * Returns an initialized default display.
+     */
+    private static EGLDisplay createEglDisplay() {
+        EGLDisplay eglDisplay = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY);
+        if (eglDisplay == EGL14.EGL_NO_DISPLAY) {
+            throw new IllegalStateException("no EGL display");
+        }
+
+        int[] major = new int[1];
+        int[] minor = new int[1];
+        if (!EGL14.eglInitialize(eglDisplay, major, 0, minor, 0)) {
+            throw new IllegalStateException("error in eglInitialize");
+        }
+        checkGlError();
+
+        return eglDisplay;
+    }
+
+    /**
+     * Returns a new GL context for the specified {@code eglDisplay}.
+     */
+    private static EGLContext createEglContext(EGLDisplay eglDisplay) {
+        int[] contextAttributes = { EGL14.EGL_CONTEXT_CLIENT_VERSION, 2, EGL14.EGL_NONE };
+        EGLContext eglContext = EGL14.eglCreateContext(eglDisplay,
+                getEglConfig(eglDisplay), EGL14.EGL_NO_CONTEXT, contextAttributes, 0);
+        checkGlError();
+
+        return eglContext;
+    }
+
+    /**
+     * Destroys the GL context identifier by {@code eglDisplay} and {@code eglContext}.
+     */
+    private static void destroyEglContext(EGLDisplay eglDisplay, EGLContext eglContext) {
+        EGL14.eglMakeCurrent(eglDisplay,
+                EGL14.EGL_NO_SURFACE,
+                EGL14.EGL_NO_SURFACE,
+                EGL14.EGL_NO_CONTEXT);
+        int error = EGL14.eglGetError();
+        if (error != EGL14.EGL_SUCCESS) {
+            throw new RuntimeException("error releasing context: " + error);
+        }
+
+        EGL14.eglDestroyContext(eglDisplay, eglContext);
+        error = EGL14.eglGetError();
+        if (error != EGL14.EGL_SUCCESS) {
+            throw new RuntimeException("error destroying context: " + error);
+        }
+
+        EGL14.eglReleaseThread();
+        error = EGL14.eglGetError();
+        if (error != EGL14.EGL_SUCCESS) {
+            throw new RuntimeException("error releasing thread: " + error);
+        }
+
+        EGL14.eglTerminate(eglDisplay);
+        error = EGL14.eglGetError();
+        if (error != EGL14.EGL_SUCCESS) {
+            throw new RuntimeException("error terminating display: " + error);
+        }
+    }
+
+    private static EGLConfig getEglConfig(EGLDisplay eglDisplay) {
+        // Get an EGLConfig.
+        final int EGL_OPENGL_ES2_BIT = 4;
+        final int RED_SIZE = 8;
+        final int GREEN_SIZE = 8;
+        final int BLUE_SIZE = 8;
+        final int ALPHA_SIZE = 8;
+        final int DEPTH_SIZE = 0;
+        final int STENCIL_SIZE = 0;
+        final int[] DEFAULT_CONFIGURATION = new int[] {
+                EGL14.EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
+                EGL14.EGL_RED_SIZE, RED_SIZE,
+                EGL14.EGL_GREEN_SIZE, GREEN_SIZE,
+                EGL14.EGL_BLUE_SIZE, BLUE_SIZE,
+                EGL14.EGL_ALPHA_SIZE, ALPHA_SIZE,
+                EGL14.EGL_DEPTH_SIZE, DEPTH_SIZE,
+                EGL14.EGL_STENCIL_SIZE, STENCIL_SIZE,
+                EGL14.EGL_NONE};
+
+        int[] configsCount = new int[1];
+        EGLConfig[] eglConfigs = new EGLConfig[1];
+        if (!EGL14.eglChooseConfig(
+                eglDisplay, DEFAULT_CONFIGURATION, 0, eglConfigs, 0, 1, configsCount, 0)) {
+            throw new RuntimeException("eglChooseConfig failed");
+        }
+        return eglConfigs[0];
+    }
+
+    /**
+     * Checks for a GL error using {@link GLES20#glGetError()}.
+     *
+     * @throws RuntimeException if there is a GL error
+     */
+    private static void checkGlError() {
+        int errorCode;
+        if ((errorCode = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
+            throw new RuntimeException("gl error: " + Integer.toHexString(errorCode));
+        }
+    }
+
+}
diff --git a/tests/tests/hardware/src/android/hardware/cts/CameraTest.java b/tests/tests/hardware/src/android/hardware/cts/CameraTest.java
index ebc82cb..b198541 100644
--- a/tests/tests/hardware/src/android/hardware/cts/CameraTest.java
+++ b/tests/tests/hardware/src/android/hardware/cts/CameraTest.java
@@ -345,17 +345,6 @@
         mCamera.setPreviewCallback(null);
     }
 
-    /**
-     * Start preview and wait for the first preview callback, which indicates the
-     * preview becomes active.
-     */
-    private void blockingStartPreview() {
-        mCamera.setPreviewCallback(new SimplePreviewStreamCb(/*Id*/0));
-        mCamera.startPreview();
-        waitForPreviewDone();
-        mCamera.setPreviewCallback(null);
-    }
-
     /*
      * Test case 1: Take a picture and verify all the callback
      * functions are called properly.
@@ -1163,7 +1152,8 @@
             for (int i = 0; i < ratios.size() - 1; i++) {
                 assertTrue(ratios.get(i) < ratios.get(i + 1));
             }
-            blockingStartPreview();
+            mCamera.startPreview();
+            waitForPreviewDone();
 
             // Test each zoom step.
             for (int i = 0; i <= maxZoom; i++) {
@@ -1326,8 +1316,8 @@
 
     private void testFocusDistancesByCamera(int cameraId) throws Exception {
         initializeMessageLooper(cameraId);
-        blockingStartPreview();
-
+        mCamera.startPreview();
+        waitForPreviewDone();
         Parameters parameters = mCamera.getParameters();
 
         // Test every supported focus mode.
@@ -1900,7 +1890,8 @@
 
             // Make sure scene mode settings are consistent before preview and
             // after preview.
-            blockingStartPreview();
+            mCamera.startPreview();
+            waitForPreviewDone();
             for (int i = 0; i < supportedSceneModes.size(); i++) {
                 String sceneMode = supportedSceneModes.get(i);
                 parameters.setSceneMode(sceneMode);
diff --git a/tests/tests/holo/Android.mk b/tests/tests/holo/Android.mk
index d844116..afc4e17 100644
--- a/tests/tests/holo/Android.mk
+++ b/tests/tests/holo/Android.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2011 The Android Open Source Project
+# Copyright (C) 2014 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.
@@ -26,7 +26,9 @@
 
 LOCAL_SRC_FILES := $(call all-java-files-under, src)
 
-LOCAL_AAPT_FLAGS = -c land -c xx_YY -c cs -c 320dpi -c 240dpi -c 213dpi -c 160dpi -c 120dpi
+#Flags to tell the Android Asset Packaging Tool not to strip for some densities
+LOCAL_AAPT_FLAGS = -c land -c xx_YY -c cs -c small -c normal -c large -c xlarge \
+    -c 640dpi -c 480dpi -c 400dpi -c 320dpi -c 240dpi -c 213dpi -c 160dpi -c 120dpi
 
 LOCAL_PACKAGE_NAME := CtsHoloTestCases
 
diff --git a/tests/tests/holo/res/drawable-400dpi/display_info.png b/tests/tests/holo/res/drawable-400dpi/display_info.png
new file mode 100644
index 0000000..e5f1f96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_button.png b/tests/tests/holo/res/drawable-400dpi/holo_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_calendar_view.png
new file mode 100644
index 0000000..66cfc1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..b29d7ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..66cfc1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..b29d7ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..66cfc1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..b29d7ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7edeab5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..98cbd99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..7edeab5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..98cbd99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..66cfc1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..b29d7ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7edeab5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..98cbd99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..a794685
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..42c6b85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..9eeea75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..c42356a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..9eeea75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..c42356a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..9eeea75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..c42356a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..9eeea75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..c42356a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..a794685
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..42c6b85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..a794685
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..42c6b85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..9eeea75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..c42356a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..a794685
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..42c6b85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..a794685
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..42c6b85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..a794685
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..42c6b85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..a794685
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..42c6b85
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7edeab5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..98cbd99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..7edeab5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..98cbd99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_button.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..7edeab5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..98cbd99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..66cfc1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..b29d7ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..7edeab5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..98cbd99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button_checked.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
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_button.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
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_button.png
+++ 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_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_minwidth_button.png
+++ 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_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_button.png
+++ 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_minwidth_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialog_noactionbar_minwidth_button.png
index ced01f4..8f6c7f0 100644
--- 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
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
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_button.png
+++ 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_noactionbar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ 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_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view.png
index 3196800..3cc4f13 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view_feb.png
index 06373c5..283759d 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_light_panel_calendar_view_feb.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
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_button.png
+++ 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_fullscreen_button.png b/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_noactionbar_fullscreen_button.png
+++ 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_panel_button.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png
index 4eeb624..47c4eb5 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view.png
+++ 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_calendar_view_feb.png b/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view_feb.png
index ad87d60..7971e45 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_panel_calendar_view_feb.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
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_button.png
+++ 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_notitlebar_button.png b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-hdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/display_info.png b/tests/tests/holo/res/drawable-land-400dpi/display_info.png
new file mode 100644
index 0000000..1b74e01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view.png
new file mode 100644
index 0000000..938038d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..de81b63
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..938038d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..de81b63
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..938038d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..de81b63
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..eb0fc5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..c2daa9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..eb0fc5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..c2daa9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..938038d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..de81b63
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..eb0fc5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..c2daa9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..80fb870
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..f631dad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..4f334aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..85d7619
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..4f334aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..85d7619
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..4f334aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..85d7619
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..4f334aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..85d7619
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..80fb870
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..f631dad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..80fb870
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..f631dad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..4f334aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..85d7619
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..80fb870
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..f631dad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..80fb870
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..f631dad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..80fb870
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..f631dad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..80fb870
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..f631dad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..eb0fc5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..c2daa9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..eb0fc5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..c2daa9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..eb0fc5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..c2daa9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..938038d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..de81b63
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..eb0fc5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..c2daa9d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view.png
new file mode 100644
index 0000000..99d030c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..14dffa2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..99d030c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..14dffa2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..99d030c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..14dffa2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..ae579d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..69df678
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..ae579d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..69df678
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..99d030c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..14dffa2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..ae579d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..69df678
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..9cdec5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..4bf52bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..c12dbb8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..bfd03e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..c12dbb8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..bfd03e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..c12dbb8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..bfd03e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..c12dbb8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..bfd03e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..9cdec5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..4bf52bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..9cdec5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..4bf52bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..c12dbb8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..bfd03e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..9cdec5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..4bf52bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..9cdec5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..4bf52bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..9cdec5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..4bf52bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..9cdec5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..4bf52bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..ae579d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..69df678
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..ae579d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..69df678
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..ae579d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..69df678
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..99d030c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..14dffa2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..ae579d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..69df678
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view.png
new file mode 100644
index 0000000..53ee68c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..997b265
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..53ee68c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..997b265
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..53ee68c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..997b265
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..16be64f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..8ff351e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..16be64f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..8ff351e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..53ee68c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..997b265
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..16be64f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..8ff351e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..c056720
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..c73a6bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..77981c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..b6a3662
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..77981c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..b6a3662
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..77981c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..b6a3662
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..77981c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..b6a3662
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..c056720
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..c73a6bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..c056720
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..c73a6bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..77981c6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..b6a3662
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..c056720
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..c73a6bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..c056720
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..c73a6bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..c056720
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..c73a6bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..c056720
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..c73a6bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..16be64f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..8ff351e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..16be64f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..8ff351e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..16be64f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..8ff351e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..53ee68c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..997b265
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..16be64f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..8ff351e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view.png
new file mode 100644
index 0000000..0f87446
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..3f4d13b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..0f87446
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..3f4d13b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..0f87446
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..3f4d13b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3683bc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0ba1245
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..3683bc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..0ba1245
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..0f87446
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..3f4d13b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3683bc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0ba1245
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..9ec2e10
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..0da084b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..c9dd22e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..22dfeca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..c9dd22e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..22dfeca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..c9dd22e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..22dfeca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..c9dd22e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..22dfeca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..9ec2e10
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0da084b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..9ec2e10
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..0da084b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..c9dd22e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..22dfeca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..9ec2e10
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0da084b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..9ec2e10
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0da084b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..9ec2e10
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..0da084b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..9ec2e10
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..0da084b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3683bc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0ba1245
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..3683bc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..0ba1245
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..3683bc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..0ba1245
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..0f87446
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..3f4d13b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..3683bc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..0ba1245
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view.png
new file mode 100644
index 0000000..1491b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..dd78ae3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..0dbbb98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..6102fc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..0dbbb98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..6102fc8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..1491b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..dd78ae3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..1491b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..dd78ae3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..1491b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..dd78ae3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..1491b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..dd78ae3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..efd0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..868a18e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..efd0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..868a18e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..3c61854
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..b00bbf9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..e2e381b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..6c2b1f3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..1491b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..dd78ae3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..aa13d2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..2a9d640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..aa13d2c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..2a9d640
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..1491b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..dd78ae3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..1491b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..dd78ae3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view.png
new file mode 100644
index 0000000..db7977a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..6aea18d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..db7977a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..6aea18d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..db7977a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..6aea18d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..ef5986e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7d2836a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..ef5986e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..7d2836a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..db7977a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..6aea18d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..ef5986e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7d2836a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..87327eb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..31282d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..36328a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..62366db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..36328a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..62366db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..36328a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..62366db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..36328a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..62366db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..87327eb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..31282d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..87327eb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..31282d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..36328a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..62366db
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..87327eb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..31282d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..87327eb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..31282d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..87327eb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..31282d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..87327eb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..31282d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..ef5986e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7d2836a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..ef5986e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..7d2836a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..ef5986e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..7d2836a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..db7977a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..6aea18d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..ef5986e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..7d2836a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/display_info.png b/tests/tests/holo/res/drawable-land-xxhdpi/display_info.png
new file mode 100644
index 0000000..c6f7fd8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view.png
index 8422428..eb0fc5e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view_feb.png
index b9be06e..c2daa9d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view.png
index b9930b5..eb0fc5e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view_feb.png
index b978724..c2daa9d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
index b9930b5..eb0fc5e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
index b978724..c2daa9d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
index b9930b5..eb0fc5e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index b978724..c2daa9d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view.png
index 05b0848..80fb870 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view_feb.png
index ec70a8d..f631dad 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
index 05b0848..80fb870 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
index ec70a8d..f631dad 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view.png
index 29ab614..80fb870 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
index 7b22482..f631dad 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
index 29ab614..80fb870 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index 7b22482..f631dad 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
index 29ab614..80fb870 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index 7b22482..f631dad 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview.png
index 1997d62..4581f51 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_tabhost.png
index d1cc783..04a04b9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view.png
index 8422428..eb0fc5e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
index b9be06e..c2daa9d 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview.png
index de97e9f..ad3ab25 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_tabhost.png
index 2d6a49b..c340bf1 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/display_info.png b/tests/tests/holo/res/drawable-land-xxxhdpi/display_info.png
new file mode 100644
index 0000000..7ad9b52
--- /dev/null
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view.png
index 8422428..a762092 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view_feb.png
index b9be06e..2b969d6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view.png
index 8422428..a762092 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view_feb.png
index b9be06e..2b969d6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
index a4807ef..a762092 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
index b9be06e..2b969d6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
index 8422428..e0c64dd 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index 13fb427..19e4729 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index 8422428..e0c64dd 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b9be06e..19e4729 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
index 8422428..a762092 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index b9be06e..2b969d6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 8422428..e0c64dd 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index b9be06e..19e4729 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view.png
index 05b0848..b2f1b38 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
index ec70a8d..c5567e0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view.png
index 05b0848..c905697 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view_feb.png
index ec70a8d..6729034 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
index 05b0848..c905697 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
index ec70a8d..6729034 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view.png
index 05b0848..c905697 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
index ec70a8d..6729034 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
index 05b0848..c905697 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index ec70a8d..6729034 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
index 05b0848..b2f1b38 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index ec70a8d..c5567e0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index 05b0848..b2f1b38 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index ec70a8d..c5567e0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
index 05b0848..c905697 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index ec70a8d..6729034 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 05b0848..b2f1b38 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index ec70a8d..c5567e0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
index 05b0848..b2f1b38 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
index ec70a8d..c5567e0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 05b0848..b2f1b38 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index ec70a8d..c5567e0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view.png
index 05b0848..b2f1b38 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
index ec70a8d..c5567e0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview.png
index 228b1fb..d9617e2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_tabhost.png
index 7e44f5e..4ca2bd7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view.png
index 8422428..e0c64dd 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
index b9be06e..19e4729 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
index 8422428..e0c64dd 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index b9be06e..19e4729 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view.png
index 8422428..e0c64dd 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view_feb.png
index b9be06e..19e4729 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view.png
index 8422428..a762092 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
index b9be06e..2b969d6 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
index 8422428..e0c64dd 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index b9be06e..19e4729 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview.png
index 14df18c..c87a3b7 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_spinner.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_tabhost.png
index de89d29..3749fc1 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_button.png b/tests/tests/holo/res/drawable-ldpi/holo_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_button.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view.png
index 23d8c0d..07df0bf 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view_feb.png
index bcf6ae2..8c748be 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-ldpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_button.png b/tests/tests/holo/res/drawable-mdpi/holo_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_calendar_view.png
index b18b9d3..a020201 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_calendar_view_feb.png
index 6bf8a8e..6ec7b61 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png
index b18b9d3..a020201 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view_feb.png
index 6bf8a8e..6ec7b61 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png
index b18b9d3..a020201 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view_feb.png
index 6bf8a8e..6ec7b61 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view.png
index 486614f..6ba961c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index 486614f..6ba961c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view.png
index b18b9d3..a020201 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
index 6bf8a8e..6ec7b61 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 486614f..6ba961c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view.png
index cde14c7..da8c25b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view.png
index 9048547..2bcd324 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view_feb.png
index 0db1630..1826249 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view.png
index 9048547..2bcd324 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view_feb.png
index 0db1630..1826249 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view.png
index 9048547..2bcd324 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view_feb.png
index 0db1630..1826249 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png
index 9048547..2bcd324 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index 0db1630..1826249 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view.png
index cde14c7..da8c25b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index cde14c7..da8c25b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view.png
index 9048547..2bcd324 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index 0db1630..1826249 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index cde14c7..da8c25b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view.png
index cde14c7..da8c25b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index cde14c7..da8c25b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view.png
index cde14c7..da8c25b 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view.png
index 486614f..6ba961c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view.png
index 486614f..6ba961c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view.png
index 486614f..6ba961c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_panel_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view.png
index b18b9d3..a020201 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view_feb.png
index 6bf8a8e..6ec7b61 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view.png
index 486614f..6ba961c 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-mdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/display_info.png
new file mode 100644
index 0000000..d23bbc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..da5c764
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..460cc2a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..c4ba05f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..578207a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview.png
new file mode 100644
index 0000000..f51fe27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_tabhost.png
new file mode 100644
index 0000000..fa8d49d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..da5c764
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..19b3484
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..b7de37f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button.png
index ced01f4..8f6c7f0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/display_info.png
new file mode 100644
index 0000000..4f187dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..578207a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..c4ba05f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button.png
new file mode 100644
index 0000000..e1ab413
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..972deb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..e0840c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..150f253
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..ccb263e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..c28064c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..7c2e552
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..4a8f978
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b8f3128
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..93cf342
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..cfee744
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button.png
new file mode 100644
index 0000000..df53721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..bff175e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..25466cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..63dab83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..d33f643
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..3e0ebe0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..733b7ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4b8611c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..5cb08f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..50155c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview.png
new file mode 100644
index 0000000..4581f51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..d3f64b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..e085750
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..bb24e4d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..f9b0c0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_spinner.png
new file mode 100644
index 0000000..0563e58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch.png
new file mode 100644
index 0000000..dfe9d0b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..0a917bf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_tabhost.png
new file mode 100644
index 0000000..04a04b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_textview.png
new file mode 100644
index 0000000..601c523
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_timepicker.png
new file mode 100644
index 0000000..571e196
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..7b4093a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..e324145
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..da5c764
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..af0fcd6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..8d07174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..7c5fd45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..460cc2a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..0baf7ba
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..8f9a832
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..1254351
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..0306efa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..861a88b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..2980ae0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..b7b5585
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..1052ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..5ae21be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..8a58e2e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..e48d877
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..c10e14c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..6c8ac68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..37e12b8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..4b8d0c2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..e12aa54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..d723310
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..14379f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7775d34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..c8ae5aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..bf06549
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..4ec280c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..21e98a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..4957a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..545ddeb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..a4dc230
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a152910
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..39e7c2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..c0c1c20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..624efc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..fbf55cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..ad3ab25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..9133002
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..122c1fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..c37bf56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..fd40bb9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..663f6e6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..4bfa4e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..b3eaa6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..b617b6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..c340bf1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..bb71cb2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..eefde4f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..858cb4c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..584c388
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..120ef2d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..f1d2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..3cc4f13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..283759d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..46158a7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..a3cee2b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..4ad45cd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..4356dd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..b7cbdbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..37d0d30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..c2edee4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..f1f332e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..d411647
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..ddeb73f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..f9d2867
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..38678ea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..af3bfa9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..cfbdd9c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..bc9edd3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..7c3f1dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..b12dcb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview.png
new file mode 100644
index 0000000..12c8e8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..c1e7e6f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..6cf34aa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..1c34052
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..8668f5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_spinner.png
new file mode 100644
index 0000000..25fe82d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch.png
new file mode 100644
index 0000000..c3ce216
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..768f9d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..bfbe5cb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_textview.png
new file mode 100644
index 0000000..3fdcc51
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..aba4738
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..1aee387
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..5251995
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..8f6c7f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..c1c07a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..47c4eb5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..7971e45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..57efda2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..ba0162d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..7cc4e09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..27d1830
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..214f78a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..014897e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..802edcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..b0ba8b0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..80dc2a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..cd1bdcd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..e7d201d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..9ed22c7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..52d11a0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..369d7b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..41e958c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..cff0e83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..45a2cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..3877915
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..0fd63d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..1a270f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..872251d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..e5e70a8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..49ee8cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..4a13324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..93c2d91
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..d2d6022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..c40708e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b611427
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..9887fde
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..e56be1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..8a89a0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..d3091f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..74dc880
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..b35f83c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..0873321
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..494147b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..d9c4985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..16dd7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..a61e41f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..a890104
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..764363a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..aaf273a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..0c02047
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..d48f714
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button.png
new file mode 100644
index 0000000..0a39b42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..aa9a944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..5e7cb31
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..73df785
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..a7c2f00
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..c2a8438
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..c65471f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c9914b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..240efaa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..58623c1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button.png
new file mode 100644
index 0000000..cd3d665
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..a991296
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..e733888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..bda6c44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..fadcafc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a0f86df
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..1303bff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..83568e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..bbb2752
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c194564
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview.png
new file mode 100644
index 0000000..9524996
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..228a171
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..0ed1e3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..f758a26
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..fdc8fa1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..d19d3c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_spinner.png
new file mode 100644
index 0000000..352cf99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch.png
new file mode 100644
index 0000000..0b3bfbd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..a31eb96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_tabhost.png
new file mode 100644
index 0000000..5de1403
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_textview.png
new file mode 100644
index 0000000..95ffc3d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_timepicker.png
new file mode 100644
index 0000000..dabec38
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..2e2f91a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..d207e96
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..b5df6e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..238e5a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..bcf6ae2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..0dcebcb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..2bf815f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..3ba89f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..d385925
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..7e7957d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..5bda546
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..be9384b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..6b1d2da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..a0eb467
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..ac66b3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..148d887
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..a7b3a43
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..734ab70
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..07a56b3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..06fec8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..a02768d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..af1e768
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..a7399ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..fe29e1d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..28c0a40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..0030f98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..33b190c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..9db92b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..50e7a34
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..eef73c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2780137
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..8adee44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4eadba8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..5642613
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..133c375
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..d1bb1a5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..6326c78
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..97db02b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..2cddf44
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..f30829c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..38f68c4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..cee3fe9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..726ca27
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..4b25524
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..3632d1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..8b89174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..3c22b8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..4dda9d9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..2c5a42f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..e214cee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..e5f2ba6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..7a62357
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..eae8da7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..17fdb74
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..0c1041b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..3e9e9ca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..47c6e79
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..fb86936
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7fd1e0a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..3b7524b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..9a935b4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..bdf9513
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..4f49944
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..da469f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..2c2628c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..98aa3ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..71eeb64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..718f20a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..18170ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview.png
new file mode 100644
index 0000000..5a30758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..d86e402
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..8879712
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..15c004c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..bd9518b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_spinner.png
new file mode 100644
index 0000000..d7cc92e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch.png
new file mode 100644
index 0000000..fd03756
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..997f865
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..90972e9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_textview.png
new file mode 100644
index 0000000..b1278e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..c8a1b49
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..a9da98d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..da47a75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..e331f1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..6645b40
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..a8bc8b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..77f5847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..a52e05b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..4d6797e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..685089c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..6b9789b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..c7beb5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..a98995d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..52c8fa5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..0e364b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..9e31f16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..5a1c489
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..9e84dff
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..b2792a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..6fabb7e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..d027b03
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..5c53ebd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80fff1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..2de6b3a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..50301a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..1240e6a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..d990181
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..b356dc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..9a4c21e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..c932a41
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..e49fd30
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..e3e558c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..258b68e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4de733d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..196b634
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c6786e1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..d4ccda7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..595813a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..efcb758
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..7163ee5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..1f898c8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..d1c57a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..10b44bb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..e38748c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..5a0da92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..9f4f121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..b6c7fd9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..d68dea8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..1e0cc69
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..a2c84fd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..92b9f86
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..fc85bd5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..892a57a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..d1f9e7b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..e70e430
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..eb76f46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..cc128be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..da28bef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..641fd75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..2d1840a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..5cf63e0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..a2e0c6b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..7be487d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..d67e218
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..fac7bec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..ea48dc2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..b998d58
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..bfcaf36
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..8caa5ed
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..c70bb56
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c14a28a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview.png
new file mode 100644
index 0000000..40c9572
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..3e99084
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..d0d9fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..ca7bcec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..a126a90
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_spinner.png
new file mode 100644
index 0000000..dfcdab2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch.png
new file mode 100644
index 0000000..2836a5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..d013b5b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..0009bfe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_textview.png
new file mode 100644
index 0000000..963085d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..4cd814b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..e216904
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..37ad8f4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..4da5786
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..e174e0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..9836bf0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..f853e3f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..30fd872
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..5de7ea3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..e268c1e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..39c3765
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..a16db16
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..5ff0c2f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..1780c48
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..d5d124b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..963e74f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..b3ca9f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..eb6e985
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..bea305b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..b9c74da
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..a5ca94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..c12eb25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..bd06021
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..7b97558
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..7482a47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..e454f60
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..7dcf8f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..25fe3dd
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..fdffb54
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..af64c01
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..3d9b801
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..caf89b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..4836514
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..f2cf574
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..0a1a74d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..5313e71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..b389e1a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..795760f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..fe7451b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..41d8c13
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..6a6f906
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..41e6f5c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..be412a2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..2316f8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..a48e3ce
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..09ff374
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..6a40721
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..01016e8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..272b121
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..44a7dc6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..c2006f9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..c4c4cae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..5b5f6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..617f42d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..fa1d1a3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..4c66b09
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..e24fc71
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..1464e42
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..80d9c46
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..aaa84e2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..b75525b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..1d43e1f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..11ea86b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..f150702
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..2f7f54f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..27ed503
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..94f43b2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..0331d92
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..026b058
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f0a714b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview.png
new file mode 100644
index 0000000..228b1fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..0f86ea0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..56febfc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..f45c12e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..88b4ec9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_spinner.png
new file mode 100644
index 0000000..363dadc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch.png
new file mode 100644
index 0000000..bc81505
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..f4f49e7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..7e44f5e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_textview.png
new file mode 100644
index 0000000..4c7ccd0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..6653013
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..20048fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..c0beb3e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..c7c2356
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..3715774
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..6c575de
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..029a5a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..96556b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..b38da0f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..1f73a73
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..9370aa8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..6ca5182
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..e98d1ec
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..a40262b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..3061ca2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..54b59fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..89f1198
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..f46b083
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..0945dc9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..4b41717
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..8bb3363
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..736ce45
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..3f32757
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..b86fc68
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..98344af
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..88ef977
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..6f080b9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..333092d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..8da6bcc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..33b87d6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..223177b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a26c94f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..a2e0967
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..da7cd83
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..60abbb3
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..c841bca
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..14df18c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..1ed1cb7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..a292215
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..04dd1a6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..b14235b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..f9eea99
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..ba426d1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..10aab75
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..307a97b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..de89d29
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..20056f0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..396028d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..0658fea
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..6de8940
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/display_info.png
new file mode 100644
index 0000000..52664fe
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button_pressed.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view.png
index 8422428..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view.png
index 05b0848..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
index ec70a8d..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view_feb.png
index ec70a8d..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
index 05b0848..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
index ec70a8d..150f253 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view.png
index 46ea891..e0840c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
index ec70a8d..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index f29c093..150f253 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index ec70a8d..150f253 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 46ea891..e0840c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view.png
index 05b0848..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view.png
index 05b0848..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
index a4807ef..af0fcd6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
index a4807ef..af0fcd6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/display_info.png
new file mode 100644
index 0000000..d992c25
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button_pressed.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view.png
index a4807ef..1308014 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..92257a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..9fb414f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..92257a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..9fb414f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..92257a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..d074d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..1308014
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..9fb414f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..92257a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..9fb414f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..92257a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..d074d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
new file mode 100644
index 0000000..b598847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view_feb.png
new file mode 100644
index 0000000..b598847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..b598847
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..33c1797
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..33c1797
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button.png
new file mode 100644
index 0000000..656d8ee
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button_pressed.png
new file mode 100644
index 0000000..72bfd64
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..6150649
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
new file mode 100644
index 0000000..9871099
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox.png
new file mode 100644
index 0000000..a7f68b6
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox_checked.png
new file mode 100644
index 0000000..80e46be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_chronometer.png
new file mode 100644
index 0000000..df5472d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_edittext.png
new file mode 100644
index 0000000..c3922c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
new file mode 100644
index 0000000..9313020
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
new file mode 100644
index 0000000..485cc98
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
new file mode 100644
index 0000000..fd0388f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button.png
new file mode 100644
index 0000000..2ae1570
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button_checked.png
new file mode 100644
index 0000000..59da2ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_horizontal.png
new file mode 100644
index 0000000..256f593
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_vertical.png
new file mode 100644
index 0000000..60ef54c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0.png
new file mode 100644
index 0000000..dd0780a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a097518
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5.png
new file mode 100644
index 0000000..9004c04
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..b62cc20
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5.png
new file mode 100644
index 0000000..9488918
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
new file mode 100644
index 0000000..f6dce8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview.png
new file mode 100644
index 0000000..efe1e47
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query.png
new file mode 100644
index 0000000..aec055a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query_hint.png
new file mode 100644
index 0000000..19ef7fb
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_0.png
new file mode 100644
index 0000000..eaf9ecf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_50.png
new file mode 100644
index 0000000..79a5111
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_spinner.png
new file mode 100644
index 0000000..b0ecb4b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch.png
new file mode 100644
index 0000000..10814b7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch_checked.png
new file mode 100644
index 0000000..4f2f234
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_tabhost.png
new file mode 100644
index 0000000..a85de8f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_textview.png
new file mode 100644
index 0000000..8dcf306
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_timepicker.png
new file mode 100644
index 0000000..1ccb174
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button.png
new file mode 100644
index 0000000..5228006
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button_checked.png
new file mode 100644
index 0000000..9d6acae
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..92257a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
new file mode 100644
index 0000000..d074d02
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..1308014
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
new file mode 100644
index 0000000..9fb414f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..92257a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view_feb.png
new file mode 100644
index 0000000..9fb414f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..92257a1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
new file mode 100644
index 0000000..9fb414f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
new file mode 100644
index 0000000..9ad55ef
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
new file mode 100644
index 0000000..81306f1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..1308014
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
new file mode 100644
index 0000000..9fb414f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
new file mode 100644
index 0000000..53747fa
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
new file mode 100644
index 0000000..d6d40d2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
new file mode 100644
index 0000000..8760e6c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
new file mode 100644
index 0000000..f32f0ab
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
new file mode 100644
index 0000000..c3fdb3b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
new file mode 100644
index 0000000..55db9cf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
new file mode 100644
index 0000000..11f702d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
new file mode 100644
index 0000000..aa20d88
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
new file mode 100644
index 0000000..2201a9a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
new file mode 100644
index 0000000..36e9700
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
new file mode 100644
index 0000000..3aa65ad
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
new file mode 100644
index 0000000..4efc022
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
new file mode 100644
index 0000000..843e4f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
new file mode 100644
index 0000000..6ef4633
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar.png
new file mode 100644
index 0000000..245ddd2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
new file mode 100644
index 0000000..965dbd1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
new file mode 100644
index 0000000..a166fda
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
new file mode 100644
index 0000000..8bd64d7
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_large.png
new file mode 100644
index 0000000..5985c81
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_small.png
new file mode 100644
index 0000000..1c73888
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button.png
new file mode 100644
index 0000000..fbdd345
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
new file mode 100644
index 0000000..1b6c4bc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
new file mode 100644
index 0000000..06e2e82
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
new file mode 100644
index 0000000..51d5826
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
new file mode 100644
index 0000000..29e70c9
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
new file mode 100644
index 0000000..a56b6fc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
new file mode 100644
index 0000000..3c9c871
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
new file mode 100644
index 0000000..4fed789
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
new file mode 100644
index 0000000..a54d3b1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
new file mode 100644
index 0000000..3ca63be
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview.png
new file mode 100644
index 0000000..cc0e7f8
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query.png
new file mode 100644
index 0000000..f357908
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
new file mode 100644
index 0000000..d067f1c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_0.png
new file mode 100644
index 0000000..fa5d5c0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_100.png
new file mode 100644
index 0000000..5b3d7a4
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_50.png
new file mode 100644
index 0000000..fb09194
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_spinner.png
new file mode 100644
index 0000000..1791d39
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch.png
new file mode 100644
index 0000000..9718fc0
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch_checked.png
new file mode 100644
index 0000000..4bc4b06
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_tabhost.png
new file mode 100644
index 0000000..348df8b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_textview.png
new file mode 100644
index 0000000..fcb761b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_timepicker.png
new file mode 100644
index 0000000..ecf23ac
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button.png
new file mode 100644
index 0000000..2eb2ffc
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png
new file mode 100644
index 0000000..5580a0c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..2fddda5
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button.png
index cf7b1fe..b5df6e2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..23d8c0d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..a020201
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
index 6bf8a8e..6ec7b61 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..2bcd324
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index 0db1630..1826249 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..da8c25b
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view_feb.png
index 93c48b0..7a62357 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_edittext.png
index 2a0ec7d..3e9e9ca 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button.png
index 790f3b0..e331f1f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..6ba961c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index b2da2e5..a8bc8b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_edittext.png
index b42cb54..6fabb7e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..98af684
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..b561faf
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view_feb.png
index 13fb427..6c575de 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view_feb.png
index 13fb427..97df30c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index b9be06e..97df30c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b9be06e..97df30c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index b9be06e..97df30c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index 13fb427..97df30c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view_feb.png
index f29c093..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view_feb.png
index f29c093..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
index f29c093..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view_feb.png
index ec70a8d..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index f29c093..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index ec70a8d..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index f29c093..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index f29c093..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index f29c093..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view_feb.png
index ec70a8d..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..216378d
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index f29c093..fa7d278 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view.png
new file mode 100644
index 0000000..7d9cc12
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view_feb.png
index ec70a8d..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_edittext.png
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view_feb.png
index 13fb427..97df30c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index 13fb427..6c575de 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view_feb.png
index 13fb427..97df30c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view.png
new file mode 100644
index 0000000..1d109f2
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
new file mode 100644
index 0000000..a92f31e
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index 13fb427..6c575de 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/display_info.png
new file mode 100644
index 0000000..b212de1
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button_pressed.png
index ae89fd9..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view.png
index a4807ef..af0fcd6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view_feb.png
index 13fb427..0baf7ba 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view.png
index a4807ef..af0fcd6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index b9be06e..0baf7ba 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view.png
index a4807ef..af0fcd6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index 13fb427..0baf7ba 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index 13fb427..0baf7ba 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view.png
index 46ea891..e0840c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view_feb.png
index f29c093..150f253 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view.png
index 05b0848..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
index ec70a8d..150f253 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
index 05b0848..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
index 05b0848..e0840c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
index 46ea891..e0840c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index f29c093..150f253 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 05b0848..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index ec70a8d..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view.png
index 46ea891..e0840c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
index f29c093..150f253 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 05b0848..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view.png
index 46ea891..c4ba05f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view_feb.png
index f29c093..578207a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview.png
index 228b1fb..f53d9a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_tabhost.png
index 7e44f5e..ce1aae5 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view.png
index a4807ef..af0fcd6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view_feb.png
index b9be06e..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view.png
index a4807ef..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view.png
index a4807ef..af0fcd6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view_feb.png
index 13fb427..da5c764 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
index 8422428..460cc2a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index 13fb427..0baf7ba 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview.png
index 14df18c..5325490 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_tabhost.png
index de89d29..2638a65 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/display_info.png
new file mode 100644
index 0000000..ffbc97a
--- /dev/null
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button_pressed.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view_feb.png
index b9be06e..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view_feb.png
index 13fb427..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
index 13fb427..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index 13fb427..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b9be06e..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index 13fb427..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 8422428..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index 13fb427..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view.png
index 46ea891..33c1797 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
index 05b0848..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index f29c093..b598847 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index f29c093..b598847 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 46ea891..33c1797 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view.png
index 46ea891..6150649 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view_feb.png
index f29c093..9871099 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview.png
index 228b1fb..efe1e47 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_tabhost.png
index 7e44f5e..a85de8f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view_feb.png
index 13fb427..d074d02 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
index 8422428..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index 13fb427..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view.png
index 8422428..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view_feb.png
index b9be06e..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0_pressed.png
index 223177b..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view_feb.png
index b9be06e..9fb414f 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
index a4807ef..92257a1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview.png
index 14df18c..cc0e7f8 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_spinner.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_tabhost.png
index de89d29..348df8b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view.png
index fdf9b9c..aa13d2c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view_feb.png
index 87196ba..2a9d640 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view.png
index fdf9b9c..aa13d2c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view_feb.png
index 87196ba..2a9d640 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view.png
index fdf9b9c..aa13d2c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
index 87196ba..2a9d640 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view.png
index 5bf75dc..b561faf 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index 5bf75dc..b561faf 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view.png
index fdf9b9c..aa13d2c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
index 87196ba..2a9d640 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 5bf75dc..b561faf 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view.png
index bc6155e..98af684 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view.png
index f795d92..3c61854 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view_feb.png
index eb491c0..b00bbf9 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view.png
index f795d92..3c61854 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
index eb491c0..b00bbf9 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view.png
index f795d92..3c61854 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view_feb.png
index eb491c0..b00bbf9 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view.png
index f795d92..3c61854 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index eb491c0..b00bbf9 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
index bc6155e..98af684 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index bc6155e..98af684 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
index f795d92..3c61854 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index eb491c0..b00bbf9 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index bc6155e..98af684 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view.png
index bc6155e..98af684 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index bc6155e..98af684 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view.png
index bc6155e..98af684 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view_feb.png
index a42da98..d1f9e7b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_switch.png
index 7ae8714..2836a5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_switch_checked.png
index 12e6f6d..d013b5b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_light_textview.png
index d7f77ce..963085d 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view.png
index 5bf75dc..b561faf 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
index 5bf75dc..b561faf 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view.png
index 5bf75dc..b561faf 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_panel_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view.png
index fdf9b9c..aa13d2c 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view_feb.png
index 87196ba..2a9d640 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button.png
index 2b21d1b..4da5786 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
index 5bf75dc..b561faf 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index 28cf842..9836bf0 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 3711fe7..e268c1e 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index c4ea8c3..39c3765 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 37b4979..a16db16 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
index ebc1196..5ff0c2f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
index 8bd73a4..1780c48 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3e9b1ef..d5d124b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 2262383..963e74f 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_purple.png
index 60ea761..b3ca9f1 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
index 5ead9bb..eb6e985 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
index ec396a2..bea305b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch.png
index eafec97..2316f8b 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch_checked.png
index 9c7aa54..a48e3ce 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_textview.png
index 26feead..6a40721 100644
--- a/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-tvdpi/holo_wallpaper_textview.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
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_button.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
index b9930b5..8c306ba 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view_feb.png
index b978724..d8477b8 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_calendar_view_feb.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
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png
index b9930b5..8c306ba 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view.png
+++ 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_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view_feb.png
index b978724..d8477b8 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_edittext.png
+++ 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_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view.png
index b9930b5..8c306ba 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
index b978724..d8477b8 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_minwidth_edittext.png
+++ 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_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view.png
index 8422428..1d109f2 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_edittext.png
+++ 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_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..c7c2356 100644
--- 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
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
index 8422428..1d109f2 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.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
index a938a51..4b41717 100644
--- 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
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
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png
index b9930b5..8c306ba 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view.png
+++ 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_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index b978724..d8477b8 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_edittext.png
+++ 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_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 8422428..1d109f2 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ 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_edittext.png b/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_edittext.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
index 05b0848..7d9cc12 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view.png
+++ 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_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view_feb.png
index ec70a8d..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_inputmethod_edittext.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
index 29ab614..4a6fd2f 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view.png
+++ 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_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view_feb.png
index 7b22482..d11de12 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_calendar_view_feb.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
index 29ab614..4a6fd2f 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
index 7b22482..d11de12 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_darkactionbar_edittext.png
+++ 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_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view.png
index 29ab614..4a6fd2f 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view_feb.png
index 7b22482..d11de12 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_edittext.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view.png
index 29ab614..4a6fd2f 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index 7b22482..d11de12 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- 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
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
index 05b0848..7d9cc12 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index ec70a8d..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- 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
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
index 05b0848..7d9cc12 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index ec70a8d..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- 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
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
index 29ab614..4a6fd2f 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index 7b22482..d11de12 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_edittext.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 05b0848..7d9cc12 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index ec70a8d..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- 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
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
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_edittext.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view.png
index 05b0848..7d9cc12 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view_feb.png
index ec70a8d..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_edittext.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 05b0848..7d9cc12 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index ec70a8d..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- 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
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
index 05b0848..7d9cc12 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view_feb.png
index ec70a8d..5b5f6fc 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_calendar_view_feb.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
index 3f8486f..e24fc71 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_light_panel_edittext.png
+++ 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_noactionbar_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png
index 8422428..1d109f2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view.png
+++ 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_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_edittext.png
+++ 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_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
index 8422428..1d109f2 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_noactionbar_fullscreen_edittext.png
+++ 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_panel_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png
index 8422428..1d109f2 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view.png
+++ 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_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_panel_edittext.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
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png
index b9930b5..8c306ba 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view.png
+++ 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_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view_feb.png
index b978724..d8477b8 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_edittext.png
+++ 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_button.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..c7c2356 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_button.png
+++ 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_calendar_view.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
index 8422428..1d109f2 100644
--- 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
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index b9be06e..6c575de 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.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
index a938a51..4b41717 100644
--- a/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-xhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/display_info.png b/tests/tests/holo/res/drawable-xxhdpi/display_info.png
new file mode 100644
index 0000000..255c28f
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xxhdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view.png
index 8422428..66cfc1c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
index b9be06e..b29d7ef 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
index 05b0848..9eeea75 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index ec70a8d..c42356a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 05b0848..e0840c0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index ec70a8d..150f253 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button.png
index c2006f9..e1ab413 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button_pressed.png
index c4c4cae..972deb3 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view.png
index 05b0848..a794685 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view_feb.png
index ec70a8d..42c6b85 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox.png
index 617f42d..ccb263e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox_checked.png
index fa1d1a3..c28064c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_chronometer.png
index 4c66b09..7c2e552 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_edittext.png
index 3f8486f..4a8f978 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_0.png
index 1464e42..b8f3128 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_100.png
index 80d9c46..93cf342 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_50.png
index aaa84e2..cfee744 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button.png
index b75525b..df53721 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button_checked.png
index 1d43e1f..bff175e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_horizontal.png
index 11ea86b..25466cd 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_vertical.png
index f150702..63dab83 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0.png
index 2f7f54f..d33f643 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0_pressed.png
index 27ed503..3e0ebe0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5.png
index 94f43b2..733b7ec 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5_pressed.png
index 0331d92..4b8611c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5.png
index 026b058..5cb08f9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5_pressed.png
index f0a714b..50155c7 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview.png
index 43c9f5c..f51fe27 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query.png
index 0f86ea0..d3f64b0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query_hint.png
index 56febfc..e085750 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_0.png
index f45c12e..bb24e4d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_50.png
index 88b4ec9..f9b0c0f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_spinner.png
index 363dadc..0563e58 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch.png
index bc81505..dfe9d0b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch_checked.png
index f4f49e7..0a917bf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_tabhost.png
index 0131a09..fa8d49d 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_textview.png
index 4c7ccd0..601c523 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_timepicker.png
index 6653013..571e196 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button.png
index 20048fe..7b4093a 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button_checked.png
index c0beb3e..e324145 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
index 8422428..af0fcd6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index b9be06e..0baf7ba 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..8d07174 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
index 3715774..7c5fd45 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
index 8422428..7edeab5 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index b9be06e..98cbd99 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
index 029a5a4..8f9a832 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
index 96556b7..1254351 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
index b38da0f..0306efa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 1f73a73..861a88b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index 9370aa8..2980ae0 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 6ca5182..b7b5585 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
index e98d1ec..1052ec9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
index a40262b..5ae21be 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3061ca2..8a58e2e 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 54b59fa..e48d877 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
index 89f1198..c10e14c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
index f46b083..6c8ac68 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
index 0945dc9..37e12b8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_edittext.png
index a938a51..4b8d0c2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar.png
index 8bb3363..e12aa54 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
index 736ce45..d723310 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
index 3f32757..14379f4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
index b86fc68..7775d34 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_large.png
index 98344af..c8ae5aa 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_small.png
index 88ef977..bf06549 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button.png
index 6f080b9..4ec280c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button_checked.png
index 333092d..21e98a4 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
index 8da6bcc..4957a5b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_vertical.png
index 33b87d6..545ddeb 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0.png
index 223177b..a4dc230 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
index a26c94f..a152910 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5.png
index a2e0967..39e7c2b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
index da7cd83..c0c1c20 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5.png
index 60abbb3..624efc6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
index c841bca..fbf55cf 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview.png
index 73c611f..19b3484 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query.png
index 1ed1cb7..9133002 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query_hint.png
index a292215..122c1fe 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_0.png
index 04dd1a6..c37bf56 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_100.png
index b14235b..fd40bb9 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_50.png
index f9eea99..663f6e6 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_spinner.png
index ba426d1..4bfa4e8 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_spinner.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch.png
index 10aab75..b3eaa6c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch_checked.png
index 307a97b..b617b6b 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_tabhost.png
index a07d0c6..b7de37f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_textview.png
index 20056f0..bb71cb2 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_timepicker.png
index 396028d..eefde4f 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button.png
index 0658fea..858cb4c 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button_checked.png
index 6de8940..584c388 100644
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/display_info.png b/tests/tests/holo/res/drawable-xxxhdpi/display_info.png
new file mode 100644
index 0000000..095382c
--- /dev/null
+++ b/tests/tests/holo/res/drawable-xxxhdpi/display_info.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view.png
index 8422428..652a535 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view_feb.png
index 13fb427..0af39ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view.png
index 8422428..652a535 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view_feb.png
index 13fb427..0af39ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view.png
index a4807ef..652a535 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
index b9be06e..0af39ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
index 8422428..1308014 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
index 8422428..1308014 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
index a4807ef..652a535 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
index b9be06e..0af39ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
index 8422428..1308014 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view.png
index 05b0848..33c1797 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view_feb.png
index ec70a8d..b598847 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view.png
index 05b0848..d372de6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view_feb.png
index ec70a8d..ff7036f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view.png
index 05b0848..d372de6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
index ec70a8d..ff7036f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view.png
index 05b0848..d372de6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view_feb.png
index ec70a8d..ff7036f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
index 05b0848..d372de6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
index ec70a8d..ff7036f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
index 05b0848..33c1797 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
index ec70a8d..b598847 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
index 05b0848..33c1797 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
index ec70a8d..b598847 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
index 05b0848..d372de6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
index ec70a8d..ff7036f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
index 05b0848..33c1797 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
index ec70a8d..b598847 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view.png
index 05b0848..33c1797 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
index ec70a8d..b598847 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
index 05b0848..33c1797 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
index ec70a8d..b598847 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button.png
index c2006f9..656d8ee 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button_pressed.png
index c4c4cae..72bfd64 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view.png
index 05b0848..33c1797 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view_feb.png
index ec70a8d..b598847 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox.png
index 617f42d..a7f68b6 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox_checked.png
index fa1d1a3..80e46be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_chronometer.png
index 4c66b09..df5472d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_edittext.png
index 3f8486f..c3922c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_0.png
index 1464e42..9313020 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_100.png
index 80d9c46..485cc98 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_50.png
index aaa84e2..fd0388f 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button.png
index b75525b..2ae1570 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button_checked.png
index 1d43e1f..59da2ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_horizontal.png
index 11ea86b..256f593 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_vertical.png
index f150702..60ef54c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0.png
index 2f7f54f..dd0780a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0_pressed.png
index 27ed503..a097518 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5.png
index 94f43b2..9004c04 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
index 0331d92..b62cc20 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5.png
index 026b058..9488918 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5_pressed.png
index f0a714b..f6dce8b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview.png
index 228b1fb..b457f33 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query.png
index 0f86ea0..aec055a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query_hint.png
index 56febfc..19ef7fb 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_0.png
index f45c12e..eaf9ecf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_50.png
index 88b4ec9..79a5111 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_spinner.png
index 363dadc..b0ecb4b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch.png
index bc81505..10814b7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch_checked.png
index f4f49e7..4f2f234 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_tabhost.png
index 7e44f5e..d6002cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_textview.png
index 4c7ccd0..8dcf306 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_timepicker.png
index 6653013..1ccb174 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button.png
index 20048fe..5228006 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button_checked.png
index c0beb3e..9d6acae 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view.png
index 8422428..1308014 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
index 8422428..1308014 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view.png
index 8422428..1308014 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view.png
index 8422428..652a535 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view_feb.png
index b9be06e..0af39ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button.png
index ae89fd9..9ad55ef 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
index 3715774..81306f1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
index 8422428..1308014 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
index b9be06e..d074d02 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
index 029a5a4..53747fa 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
index 96556b7..d6d40d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
index b38da0f..8760e6c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
index 1f73a73..f32f0ab 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
index 9370aa8..c3fdb3b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
index 6ca5182..55db9cf 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
index e98d1ec..11f702d 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
index a40262b..aa20d88 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
index 3061ca2..2201a9a 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
index 54b59fa..36e9700 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
index 89f1198..3aa65ad 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
index f46b083..4efc022 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
index 0945dc9..843e4f8 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
index a938a51..6ef4633 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar.png
index 8bb3363..245ddd2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
index 736ce45..965dbd1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
index 3f32757..a166fda 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
index b86fc68..8bd64d7 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_large.png
index 98344af..5985c81 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_large.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_large.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_small.png
index 88ef977..1c73888 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_small.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_small.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button.png
index 6f080b9..fbdd345 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button_checked.png
index 333092d..1b6c4bc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
index 8da6bcc..06e2e82 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
index 33b87d6..51d5826 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0.png
index 223177b..29e70c9 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
index a26c94f..a56b6fc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
index a2e0967..3c9c871 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
index da7cd83..4fed789 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5.png
index 60abbb3..a54d3b1 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
index c841bca..3ca63be 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview.png
index 14df18c..22ee0dc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query.png
index 1ed1cb7..f357908 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query_hint.png
index a292215..d067f1c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query_hint.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query_hint.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_0.png
index 04dd1a6..fa5d5c0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_0.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_0.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_100.png
index b14235b..5b3d7a4 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_100.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_100.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_50.png
index f9eea99..fb09194 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_50.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_50.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_spinner.png
index ba426d1..1791d39 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_spinner.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_spinner.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch.png
index 10aab75..9718fc0 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch_checked.png
index 307a97b..4bc4b06 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch_checked.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_tabhost.png
index de89d29..3cac2d2 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_tabhost.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_tabhost.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_textview.png
index 20056f0..fcb761b 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_textview.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_textview.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_timepicker.png
index 396028d..ecf23ac 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_timepicker.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_timepicker.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button.png
index 0658fea..2eb2ffc 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button.png
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button_checked.png
index 6de8940..5580a0c 100644
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button_checked.png
+++ b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button_checked.png
Binary files differ
diff --git a/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java b/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java
index 4ddc187..216238d 100644
--- a/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java
+++ b/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/BitmapAssets.java b/tests/tests/holo/src/android/holo/cts/BitmapAssets.java
index e676a96..9301d1e 100644
--- a/tests/tests/holo/src/android/holo/cts/BitmapAssets.java
+++ b/tests/tests/holo/src/android/holo/cts/BitmapAssets.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java b/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java
index c496efe..37d3e75 100644
--- a/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java
+++ b/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/DisplayInfoActivity.java b/tests/tests/holo/src/android/holo/cts/DisplayInfoActivity.java
index a692b3d..66ac27f 100644
--- a/tests/tests/holo/src/android/holo/cts/DisplayInfoActivity.java
+++ b/tests/tests/holo/src/android/holo/cts/DisplayInfoActivity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
@@ -60,6 +60,9 @@
             case DisplayMetrics.DENSITY_XHIGH:
                 return "xdpi";
 
+            case DisplayMetrics.DENSITY_400:
+                return "400dpi";
+
             case DisplayMetrics.DENSITY_XXHIGH:
                 return "xxdpi";
 
diff --git a/tests/tests/holo/src/android/holo/cts/HoloTest.java b/tests/tests/holo/src/android/holo/cts/HoloTest.java
index f3e7e63..d5a2e15 100644
--- a/tests/tests/holo/src/android/holo/cts/HoloTest.java
+++ b/tests/tests/holo/src/android/holo/cts/HoloTest.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java b/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java
index 3092490..32e21d8 100644
--- a/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java
+++ b/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java b/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java
index 3a0e2af..6903875 100644
--- a/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java
+++ b/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutModifier.java b/tests/tests/holo/src/android/holo/cts/LayoutModifier.java
index 8a9d41d..73e3148 100644
--- a/tests/tests/holo/src/android/holo/cts/LayoutModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/LayoutModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java b/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java
index f808d59..8cef2d9 100644
--- a/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java
+++ b/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java b/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java
index 89bf9eb..16705d5 100644
--- a/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java
+++ b/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java b/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java
index 104ac1d..660a6bf 100644
--- a/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java
+++ b/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java b/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java
index afc0fbe..4bb0a04 100644
--- a/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java
+++ b/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java b/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java
index 3c489ab..c628f65 100644
--- a/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java
+++ b/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java b/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java
index 5fe5086..e0b529f 100644
--- a/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java
+++ b/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java b/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java
index 60b4a15..9ce5ab6 100644
--- a/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java
+++ b/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java b/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java
index 9ded478..ad6de0f 100644
--- a/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java
+++ b/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java b/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java
index b21b834..4f6742f 100644
--- a/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java
+++ b/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java
index 6c8b601..3f1d96b 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java
index 1f4c100..8512a5f 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
@@ -79,4 +79,4 @@
 
         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
index e27b6c1..a1a232c 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java
index a828eb8..bfaf197 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java
index 94712b5..5cd1ad1 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
@@ -28,4 +28,4 @@
 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
index 38167e0..dc4e11f 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java
index ffb93fb..0cf6fa3 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java b/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java
index b2c7744..ae5dd6b 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java
index bbffa9e..5c7386f 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java
index 34f171c..13fb5ac 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java
index e9e13bb..832d130 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java b/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java
index 4be06da..e07d42e 100644
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java
+++ b/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 The Android Open Source Project
+ * Copyright (C) 2014 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.
diff --git a/tests/tests/media/src/android/media/cts/MediaCodecTest.java b/tests/tests/media/src/android/media/cts/MediaCodecTest.java
index d2c39f4..4b8abcd 100644
--- a/tests/tests/media/src/android/media/cts/MediaCodecTest.java
+++ b/tests/tests/media/src/android/media/cts/MediaCodecTest.java
@@ -16,9 +16,13 @@
 
 package android.media.cts;
 
+import com.android.cts.media.R;
+
+import android.content.res.AssetFileDescriptor;
 import android.media.MediaCodec;
 import android.media.MediaCodecInfo;
 import android.media.MediaCodecList;
+import android.media.MediaExtractor;
 import android.media.MediaFormat;
 import android.media.MediaCodecInfo.CodecCapabilities;
 import android.media.MediaCodecInfo.CodecProfileLevel;
@@ -27,13 +31,19 @@
 import android.util.Log;
 import android.view.Surface;
 
+import java.io.IOException;
 import java.nio.ByteBuffer;
+import java.util.concurrent.atomic.AtomicBoolean;
 
 
 /**
  * General MediaCodec tests.
  *
  * In particular, check various API edge cases.
+ *
+ * <p>The file in res/raw used by testDecodeShortInput are (c) copyright 2008,
+ * Blender Foundation / www.bigbuckbunny.org, and are licensed under the Creative Commons
+ * Attribution 3.0 License at http://creativecommons.org/licenses/by/3.0/us/.
  */
 public class MediaCodecTest extends AndroidTestCase {
     private static final String TAG = "MediaCodecTest";
@@ -239,6 +249,192 @@
         }
     }
 
+    /**
+     * Tests whether decoding a short group-of-pictures succeeds. The test queues a few video frames
+     * then signals end-of-stream. The test fails if the decoder doesn't output the queued frames.
+     */
+    public void testDecodeShortInput() throws InterruptedException {
+        // Input buffers from this input video are queued up to and including the video frame with
+        // timestamp LAST_BUFFER_TIMESTAMP_US.
+        final int INPUT_RESOURCE_ID =
+                R.raw.video_480x360_mp4_h264_1350kbps_30fps_aac_stereo_192kbps_44100hz;
+        final long LAST_BUFFER_TIMESTAMP_US = 166666;
+
+        // The test should fail if the decoder never produces output frames for the truncated input.
+        // Time out decoding, as we have no way to query whether the decoder will produce output.
+        final int DECODING_TIMEOUT_MS = 2000;
+
+        final AtomicBoolean completed = new AtomicBoolean();
+        Thread videoDecodingThread = new Thread(new Runnable() {
+            @Override
+            public void run() {
+                completed.set(runDecodeShortInput(INPUT_RESOURCE_ID, LAST_BUFFER_TIMESTAMP_US));
+            }
+        });
+        videoDecodingThread.start();
+        videoDecodingThread.join(DECODING_TIMEOUT_MS);
+        if (!completed.get()) {
+            throw new RuntimeException("timed out decoding to end-of-stream");
+        }
+    }
+
+    private boolean runDecodeShortInput(int inputResourceId, long lastBufferTimestampUs) {
+        final int NO_BUFFER_INDEX = -1;
+
+        OutputSurface outputSurface = null;
+        MediaExtractor mediaExtractor = null;
+        MediaCodec mediaCodec = null;
+        try {
+            outputSurface = new OutputSurface(1, 1);
+            mediaExtractor = getMediaExtractorForMimeType(inputResourceId, "video/");
+            MediaFormat mediaFormat =
+                    mediaExtractor.getTrackFormat(mediaExtractor.getSampleTrackIndex());
+            mediaCodec =
+                    MediaCodec.createDecoderByType(mediaFormat.getString(MediaFormat.KEY_MIME));
+            mediaCodec.configure(mediaFormat, outputSurface.getSurface(), null, 0);
+            mediaCodec.start();
+            boolean eos = false;
+            boolean signaledEos = false;
+            MediaCodec.BufferInfo outputBufferInfo = new MediaCodec.BufferInfo();
+            int outputBufferIndex = NO_BUFFER_INDEX;
+            while (!eos && !Thread.interrupted()) {
+                // Try to feed more data into the codec.
+                if (mediaExtractor.getSampleTrackIndex() != -1 && !signaledEos) {
+                    int bufferIndex = mediaCodec.dequeueInputBuffer(0);
+                    if (bufferIndex != NO_BUFFER_INDEX) {
+                        ByteBuffer buffer = mediaCodec.getInputBuffers()[bufferIndex];
+                        int size = mediaExtractor.readSampleData(buffer, 0);
+                        long timestampUs = mediaExtractor.getSampleTime();
+                        mediaExtractor.advance();
+                        signaledEos = mediaExtractor.getSampleTrackIndex() == -1
+                                || timestampUs == lastBufferTimestampUs;
+                        mediaCodec.queueInputBuffer(bufferIndex,
+                                0,
+                                size,
+                                timestampUs,
+                                signaledEos ? MediaCodec.BUFFER_FLAG_END_OF_STREAM : 0);
+                    }
+                }
+
+                // If we don't have an output buffer, try to get one now.
+                if (outputBufferIndex == NO_BUFFER_INDEX) {
+                    outputBufferIndex = mediaCodec.dequeueOutputBuffer(outputBufferInfo, 0);
+                }
+
+                if (outputBufferIndex == MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED
+                        || outputBufferIndex == MediaCodec.INFO_OUTPUT_FORMAT_CHANGED
+                        || outputBufferIndex == MediaCodec.INFO_TRY_AGAIN_LATER) {
+                    outputBufferIndex = NO_BUFFER_INDEX;
+                } else if (outputBufferIndex != NO_BUFFER_INDEX) {
+                    eos = (outputBufferInfo.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0;
+
+                    boolean render = outputBufferInfo.size > 0;
+                    mediaCodec.releaseOutputBuffer(outputBufferIndex, render);
+                    if (render) {
+                        outputSurface.awaitNewImage();
+                    }
+
+                    outputBufferIndex = NO_BUFFER_INDEX;
+                }
+            }
+
+            return eos;
+        } catch (IOException e) {
+            throw new RuntimeException("error reading input resource", e);
+        } finally {
+            if (mediaCodec != null) {
+                mediaCodec.stop();
+                mediaCodec.release();
+            }
+            if (mediaExtractor != null) {
+                mediaExtractor.release();
+            }
+            if (outputSurface != null) {
+                outputSurface.release();
+            }
+        }
+    }
+
+    /**
+     * Tests creating two decoders for {@link #MIME_TYPE_AUDIO} at the same time.
+     */
+    public void testCreateTwoAudioDecoders() {
+        final MediaFormat format = MediaFormat.createAudioFormat(
+                MIME_TYPE_AUDIO, AUDIO_SAMPLE_RATE, AUDIO_CHANNEL_COUNT);
+
+        MediaCodec audioDecoderA = null;
+        MediaCodec audioDecoderB = null;
+        try {
+            audioDecoderA = MediaCodec.createDecoderByType(MIME_TYPE_AUDIO);
+            audioDecoderA.configure(format, null, null, 0);
+            audioDecoderA.start();
+
+            audioDecoderB = MediaCodec.createDecoderByType(MIME_TYPE_AUDIO);
+            audioDecoderB.configure(format, null, null, 0);
+            audioDecoderB.start();
+        } finally {
+            if (audioDecoderB != null) {
+                try {
+                    audioDecoderB.stop();
+                    audioDecoderB.release();
+                } catch (RuntimeException e) {
+                    Log.w(TAG, "exception stopping/releasing codec", e);
+                }
+            }
+
+            if (audioDecoderA != null) {
+                try {
+                    audioDecoderA.stop();
+                    audioDecoderA.release();
+                } catch (RuntimeException e) {
+                    Log.w(TAG, "exception stopping/releasing codec", e);
+                }
+            }
+        }
+    }
+
+    /**
+     * Tests creating an encoder and decoder for {@link #MIME_TYPE_AUDIO} at the same time.
+     */
+    public void testCreateAudioDecoderAndEncoder() {
+        final MediaFormat encoderFormat = MediaFormat.createAudioFormat(
+                MIME_TYPE_AUDIO, AUDIO_SAMPLE_RATE, AUDIO_CHANNEL_COUNT);
+        encoderFormat.setInteger(MediaFormat.KEY_AAC_PROFILE, AUDIO_AAC_PROFILE);
+        encoderFormat.setInteger(MediaFormat.KEY_BIT_RATE, AUDIO_BIT_RATE);
+        final MediaFormat decoderFormat = MediaFormat.createAudioFormat(
+                MIME_TYPE_AUDIO, AUDIO_SAMPLE_RATE, AUDIO_CHANNEL_COUNT);
+
+        MediaCodec audioEncoder = null;
+        MediaCodec audioDecoder = null;
+        try {
+            audioEncoder = MediaCodec.createEncoderByType(MIME_TYPE_AUDIO);
+            audioEncoder.configure(encoderFormat, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE);
+            audioEncoder.start();
+
+            audioDecoder = MediaCodec.createDecoderByType(MIME_TYPE_AUDIO);
+            audioDecoder.configure(decoderFormat, null, null, 0);
+            audioDecoder.start();
+        } finally {
+            if (audioDecoder != null) {
+                try {
+                    audioDecoder.stop();
+                    audioDecoder.release();
+                } catch (RuntimeException e) {
+                    Log.w(TAG, "exception stopping/releasing codec", e);
+                }
+            }
+
+            if (audioEncoder != null) {
+                try {
+                    audioEncoder.stop();
+                    audioEncoder.release();
+                } catch (RuntimeException e) {
+                    Log.w(TAG, "exception stopping/releasing codec", e);
+                }
+            }
+        }
+    }
+
     public void testConcurrentAudioVideoEncodings() throws InterruptedException {
         final int VIDEO_NUM_SWAPS = 100;
         // audio only checks this and stop
@@ -505,4 +701,29 @@
         fail("couldn't find a good color format for " + codecInfo.getName() + " / " + MIME_TYPE);
         return 0;   // not reached
     }
+
+    private MediaExtractor getMediaExtractorForMimeType(int resourceId, String mimeTypePrefix)
+            throws IOException {
+        MediaExtractor mediaExtractor = new MediaExtractor();
+        AssetFileDescriptor afd = mContext.getResources().openRawResourceFd(resourceId);
+        try {
+            mediaExtractor.setDataSource(
+                    afd.getFileDescriptor(), afd.getStartOffset(), afd.getLength());
+        } finally {
+            afd.close();
+        }
+        int trackIndex;
+        for (trackIndex = 0; trackIndex < mediaExtractor.getTrackCount(); trackIndex++) {
+            MediaFormat trackMediaFormat = mediaExtractor.getTrackFormat(trackIndex);
+            if (trackMediaFormat.getString(MediaFormat.KEY_MIME).startsWith(mimeTypePrefix)) {
+                mediaExtractor.selectTrack(trackIndex);
+                break;
+            }
+        }
+        if (trackIndex == mediaExtractor.getTrackCount()) {
+            throw new IllegalStateException("couldn't get a video track");
+        }
+
+        return mediaExtractor;
+    }
 }
diff --git a/tests/tests/media/src/android/media/cts/StreamingMediaPlayerTest.java b/tests/tests/media/src/android/media/cts/StreamingMediaPlayerTest.java
index 1d78967..5dd2c4f 100644
--- a/tests/tests/media/src/android/media/cts/StreamingMediaPlayerTest.java
+++ b/tests/tests/media/src/android/media/cts/StreamingMediaPlayerTest.java
@@ -110,10 +110,12 @@
     // Streaming HLS video from YouTube
     public void testHLS() throws Exception {
         // Play stream for 60 seconds
-        playLiveVideoTest("http://www.youtube.com/api/manifest/hls/ns/yt-live/id/UeHRu5LFHaU"
-                + "?ip=0.0.0.0&ipbits=0&expire=19000000000&sparams=ip,ipbits,expire&signature"
-                + "=313BE90526F2D815EB207156E1460C7E8EEC2503.799EE7B8B7CE3F2957060DB27C216077"
-                + "0303EBD2&key=test_key1&user=android-device-test&m3u8=1", 60 * 1000);
+        playLiveVideoTest("http://www.youtube.com/api/manifest/hls_variant/id/"
+                + "0168724d02bd9945/itag/5/source/youtube/playlist_type/DVR/ip/"
+                + "0.0.0.0/ipbits/0/expire/19000000000/sparams/ip,ipbits,expire"
+                + ",id,itag,source,playlist_type/signature/773AB8ACC68A96E5AA48"
+                + "1996AD6A1BBCB70DCB87.95733B544ACC5F01A1223A837D2CF04DF85A336"
+                + "0/key/ik0", 60 * 1000);
     }
 
     // Streaming audio from local HTTP server
diff --git a/tests/tests/net/src/android/net/wifi/cts/WifiManagerTest.java b/tests/tests/net/src/android/net/wifi/cts/WifiManagerTest.java
index 2580dbe..7faea64 100644
--- a/tests/tests/net/src/android/net/wifi/cts/WifiManagerTest.java
+++ b/tests/tests/net/src/android/net/wifi/cts/WifiManagerTest.java
@@ -407,6 +407,10 @@
      * To pass this CTS test, a connected WiFi link is required.
      */
     public void testWifiWatchdog() throws Exception {
+        if (!WifiFeature.isWifiSupported(getContext())) {
+            // skip the test if WiFi is not supported
+            return;
+        }
         // Make sure WiFi is enabled
         if (!mWifiManager.isWifiEnabled()) {
             setWifiEnabled(true);
diff --git a/tests/tests/os/src/android/os/cts/BuildVersionTest.java b/tests/tests/os/src/android/os/cts/BuildVersionTest.java
index 00af150..1e7503c 100644
--- a/tests/tests/os/src/android/os/cts/BuildVersionTest.java
+++ b/tests/tests/os/src/android/os/cts/BuildVersionTest.java
@@ -29,7 +29,7 @@
 
     private static final String LOG_TAG = "BuildVersionTest";
     private static final Set<String> EXPECTED_RELEASES =
-            new HashSet<String>(Arrays.asList("4.4"));
+            new HashSet<String>(Arrays.asList("4.4", "4.4.1", "4.4.2"));
     private static final int EXPECTED_SDK = 19;
 
     @SuppressWarnings("deprecation")
diff --git a/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java b/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java
index ab6ff46..83f2a36 100644
--- a/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java
+++ b/tests/tests/permission/src/android/permission/cts/FileSystemPermissionTest.java
@@ -443,6 +443,8 @@
                     "/data/local/tmp/com.nuance.android.vsuite.vsuiteapp",
                     "/data/log",
                     "/data/logger",
+                    "/data/logs",
+                    "/data/logs/core",
                     "/data/lost+found",
                     "/data/misc",
                     "/data/misc/bluetooth",
@@ -727,42 +729,49 @@
     private static final Set<File> CHAR_DEV_EXCEPTIONS = new HashSet<File>(
             Arrays.asList(
                 // All exceptions should be alphabetical and associated with a bug number.
+                new File("/dev/adsprpc-smd"), // b/11710243
                 new File("/dev/alarm"),      // b/9035217
                 new File("/dev/ashmem"),
                 new File("/dev/binder"),
-                new File("/dev/felica"),
-                new File("/dev/felica_ant"),
-                new File("/dev/felica_cen"),
-                new File("/dev/felica_pon"),
-                new File("/dev/felica_rfs"),
-                new File("/dev/felica_rws"),
-                new File("/dev/felica_uicc"),
+                new File("/dev/felica"),     // b/11142586
+                new File("/dev/felica_ant"), // b/11142586
+                new File("/dev/felica_cen"), // b/11142586
+                new File("/dev/felica_pon"), // b/11142586
+                new File("/dev/felica_rfs"), // b/11142586
+                new File("/dev/felica_rws"), // b/11142586
+                new File("/dev/felica_uicc"), // b/11142586
                 new File("/dev/full"),
                 new File("/dev/genlock"),    // b/9035217
                 new File("/dev/ion"),
+                new File("/dev/kgsl-2d0"),   // b/11271533
+                new File("/dev/kgsl-2d1"),   // b/11271533
                 new File("/dev/kgsl-3d0"),   // b/9035217
                 new File("/dev/log/events"), // b/9035217
                 new File("/dev/log/main"),   // b/9035217
                 new File("/dev/log/radio"),  // b/9035217
                 new File("/dev/log/system"), // b/9035217
                 new File("/dev/mali0"),       // b/9106968
+                new File("/dev/mali"),        // b/11142586
                 new File("/dev/msm_rotator"), // b/9035217
                 new File("/dev/null"),
                 new File("/dev/nvhost-ctrl"), // b/9088251
                 new File("/dev/nvhost-gr2d"), // b/9088251
                 new File("/dev/nvhost-gr3d"), // b/9088251
+                new File("/dev/nvhost-tsec"),
                 new File("/dev/nvmap"),       // b/9088251
                 new File("/dev/ptmx"),        // b/9088251
                 new File("/dev/pvrsrvkm"),    // b/9108170
                 new File("/dev/pvr_sync"),
+                new File("/dev/quadd"),
                 new File("/dev/random"),
-                new File("/dev/snfc_cen"),
-                new File("/dev/snfc_hsel"),
-                new File("/dev/snfc_intu_poll"),
-                new File("/dev/snfc_rfs"),
+                new File("/dev/snfc_cen"),    // b/11142586
+                new File("/dev/snfc_hsel"),   // b/11142586
+                new File("/dev/snfc_intu_poll"), // b/11142586
+                new File("/dev/snfc_rfs"),    // b/11142586
                 new File("/dev/tiler"),       // b/9108170
                 new File("/dev/tty"),
                 new File("/dev/urandom"),
+                new File("/dev/ump"),         // b/11142586
                 new File("/dev/xt_qtaguid"),  // b/9088251
                 new File("/dev/zero"),
                 new File("/dev/fimg2d"),      // b/10428016
diff --git a/tests/tests/telephony/src/android/telephony/cts/SmsManagerTest.java b/tests/tests/telephony/src/android/telephony/cts/SmsManagerTest.java
index bf328b7..ac1acfb 100644
--- a/tests/tests/telephony/src/android/telephony/cts/SmsManagerTest.java
+++ b/tests/tests/telephony/src/android/telephony/cts/SmsManagerTest.java
@@ -65,6 +65,7 @@
                     "45006",    // LGT
                     "311660",   // MetroPCS
                     "310120",   // Sprint
+                    "44050",    // KDDI
                     "44053",    // KDDI
                     "44054",    // KDDI
                     "44070",    // KDDI
diff --git a/tests/tests/util/src/android/util/cts/TypedValueTest.java b/tests/tests/util/src/android/util/cts/TypedValueTest.java
index 5cd7463..2ab91d9 100644
--- a/tests/tests/util/src/android/util/cts/TypedValueTest.java
+++ b/tests/tests/util/src/android/util/cts/TypedValueTest.java
@@ -205,16 +205,4 @@
 
         assertEquals(TypedValue.complexToDimension(10, dm), tv.getDimension(dm));
     }
-
-    public void testComplexToDimensionNoisy() {
-        DisplayMetrics dm = new DisplayMetrics();
-        dm.density = 1.1f;
-        dm.heightPixels = 100;
-        dm.scaledDensity = 2.1f;
-        dm.xdpi = 200f;
-        dm.ydpi = 300f;
-
-        assertEquals(TypedValue.complexToDimension(1, dm),
-                                 TypedValue.complexToDimensionNoisy(1, dm));
-    }
 }
diff --git a/tests/uiautomator/test-apps/CtsUiAutomatorApp/res/layout-land/test5_detail_fragment.xml b/tests/uiautomator/test-apps/CtsUiAutomatorApp/res/layout-land/test5_detail_fragment.xml
new file mode 100644
index 0000000..123ebde
--- /dev/null
+++ b/tests/uiautomator/test-apps/CtsUiAutomatorApp/res/layout-land/test5_detail_fragment.xml
@@ -0,0 +1,123 @@
+<?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.
+ -->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:contentDescription="@string/test_5_Widgets_collection"
+    android:orientation="horizontal" >
+
+    <LinearLayout
+        android:layout_width="wrap_content"
+        android:layout_height="match_parent"
+        android:orientation="vertical" >
+
+        <CheckBox
+            android:id="@+id/test_5_checkBox"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/test5_CheckBox" />
+
+        <Spinner
+            android:id="@+id/test_5_spinner"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content" />
+
+        <ProgressBar
+            android:id="@+id/test_5_progressBar"
+            style="?android:attr/progressBarStyleLarge"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content" />
+
+        <GridLayout
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:columnCount="3" >
+
+            <ImageButton
+                android:id="@+id/test_5_imageButton"
+                android:layout_column="0"
+                android:layout_gravity="left"
+                android:layout_row="0"
+                android:src="@drawable/ic_launcher" />
+
+            <RatingBar
+                android:id="@+id/test_5_ratingBar"
+                android:layout_column="1"
+                android:layout_columnSpan="2"
+                android:layout_gravity="left|bottom"
+                android:layout_row="0" />
+
+            <Button
+                android:id="@+id/test_5_button2"
+                style="?android:attr/buttonStyleSmall"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_gravity="left|bottom"
+                android:enabled="false"
+                android:layout_row="0"
+                android:text="@string/test5_Button_Disabled" />
+
+            <Space
+                android:layout_width="21dp"
+                android:layout_height="1dp"
+                android:layout_column="1"
+                android:layout_row="0" />
+
+            <Space
+                android:layout_width="1dp"
+                android:layout_height="21dp"
+                android:layout_column="0"
+                android:layout_row="0" />
+
+            <Space
+                android:layout_width="221dp"
+                android:layout_height="15dp"
+                android:layout_column="2"
+                android:layout_row="1" />
+
+            <ToggleButton
+                android:id="@+id/test_5_toggleButton"
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_column="2"
+                android:text="@string/test5_ToggleButton" />
+        </GridLayout>
+
+    </LinearLayout>
+
+    <LinearLayout
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical" >
+
+        <SeekBar
+            android:id="@+id/test_5_seekBar"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content" />
+
+        <Button
+            android:id="@+id/test_5_button1"
+            style="?android:attr/buttonStyleSmall"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:contentDescription="@string/test5_Button_Description"
+            android:text="@string/test5_Button" />
+
+    </LinearLayout>
+
+</LinearLayout>
diff --git a/tools/cts-holo-generation/Android.mk b/tools/cts-holo-generation/Android.mk
new file mode 100644
index 0000000..5f12ef0
--- /dev/null
+++ b/tools/cts-holo-generation/Android.mk
@@ -0,0 +1,34 @@
+# Copyright (C) 2014 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)
+# and because it is in data, do not strip classes.dex
+LOCAL_DEX_PREOPT := false
+LOCAL_PROGUARD_ENABLED := disabled
+
+LOCAL_JAVA_LIBRARIES := android.test.runner
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_PACKAGE_NAME := CtsHoloGeneration
+
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_PACKAGE)
diff --git a/tools/cts-holo-generation/AndroidManifest.xml b/tools/cts-holo-generation/AndroidManifest.xml
new file mode 100644
index 0000000..d7de891
--- /dev/null
+++ b/tools/cts-holo-generation/AndroidManifest.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+      package="com.android.cts.holo_capture"
+      android:versionCode="1"
+      android:versionName="1.0">
+    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+
+    <instrumentation
+        android:name="android.test.InstrumentationTestRunner"
+        android:targetPackage="com.android.cts.holo_capture" />
+
+    <application>
+        <uses-library android:name="android.test.runner" />
+        <activity android:name=".CaptureActivity">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER"/>
+            </intent-filter>
+        </activity>
+    </application>
+</manifest>
diff --git a/tools/cts-holo-generation/src/com/android/cts/holo_capture/CaptureActivity.java b/tools/cts-holo-generation/src/com/android/cts/holo_capture/CaptureActivity.java
new file mode 100644
index 0000000..48ba9c7
--- /dev/null
+++ b/tools/cts-holo-generation/src/com/android/cts/holo_capture/CaptureActivity.java
@@ -0,0 +1,51 @@
+/*
+ * Copyright (C) 2014 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 com.android.cts.holo_capture;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.os.Bundle;
+import android.util.Log;
+
+import java.util.concurrent.CountDownLatch;
+
+public class CaptureActivity extends Activity {
+    private static final String TAG = "CaptureActivity";
+    private CountDownLatch mLatch = new CountDownLatch(1);
+
+    public void waitForCompletion() throws InterruptedException {
+        mLatch.await();
+    }
+
+    @Override
+    protected void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+
+        Intent intent = new Intent();
+        intent.setClassName("com.android.cts.holo", "android.holo.cts.ThemeTestActivity");
+        intent.putExtra("task", 2);
+        intent.putExtra("layoutAdapterMode", 1);
+        int requestCode = 0;
+        startActivityForResult(intent, requestCode);
+    }
+
+    @Override
+    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
+        Log.i(TAG, "onActivityResult req:" + requestCode + " res:" + resultCode);
+        mLatch.countDown();
+    }
+}
diff --git a/tools/cts-holo-generation/src/com/android/cts/holo_capture/CaptureHolo.java b/tools/cts-holo-generation/src/com/android/cts/holo_capture/CaptureHolo.java
new file mode 100644
index 0000000..cc68e1c
--- /dev/null
+++ b/tools/cts-holo-generation/src/com/android/cts/holo_capture/CaptureHolo.java
@@ -0,0 +1,36 @@
+/*
+ * Copyright (C) 2014 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 com.android.cts.holo_capture;
+
+import android.app.KeyguardManager;
+import android.content.Context;
+import android.test.ActivityInstrumentationTestCase2;
+
+public class CaptureHolo extends ActivityInstrumentationTestCase2<CaptureActivity> {
+    public CaptureHolo() {
+        super(CaptureActivity.class);
+    }
+
+    public void testCaptureHolo() throws InterruptedException {
+        setActivityInitialTouchMode(true);
+        CaptureActivity activity = getActivity();
+        KeyguardManager keyguardManager =
+                (KeyguardManager) activity.getSystemService(Context.KEYGUARD_SERVICE);
+        keyguardManager.newKeyguardLock("holo_capture").disableKeyguard();
+        activity.waitForCompletion();
+    }
+}
diff --git a/tools/device-setup/TestDeviceSetup/AndroidManifest.xml b/tools/device-setup/TestDeviceSetup/AndroidManifest.xml
index d55ecdf..0a20e1c 100644
--- a/tools/device-setup/TestDeviceSetup/AndroidManifest.xml
+++ b/tools/device-setup/TestDeviceSetup/AndroidManifest.xml
@@ -30,12 +30,6 @@
                 <category android:name="android.intent.category.LAUNCHER"/>
             </intent-filter>
         </activity>
-
-    <receiver android:name="android.tests.util.DisableKeyguardReceiver">
-            <intent-filter>
-                <action android:name="android.tests.util.disablekeyguard" />
-            </intent-filter>
-        </receiver>
     </application>
 
     <instrumentation android:name="android.tests.getinfo.DeviceInfoInstrument"
diff --git a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoActivity.java b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoActivity.java
index 28f4d53..7ee7436 100644
--- a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoActivity.java
+++ b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoActivity.java
@@ -22,6 +22,8 @@
 import android.content.pm.ConfigurationInfo;
 import android.content.res.Configuration;
 import android.os.Bundle;
+import android.view.Window;
+import android.view.WindowManager;
 
 import java.util.HashSet;
 import java.util.Locale;
@@ -54,9 +56,9 @@
             final CountDownLatch done = new CountDownLatch(1);
             final int version = i;
             DeviceInfoActivity.this.runOnUiThread(new Runnable() {
-              public void run() {
-                setContentView(new GLESSurfaceView(DeviceInfoActivity.this, version, done));
-              }
+                public void run() {
+                    setContentView(new GLESSurfaceView(DeviceInfoActivity.this, version, done));
+                }
             });
             try {
                 done.await();
@@ -94,15 +96,18 @@
     @Override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
+        Window w = getWindow();
+        w.setFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED,
+                WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
 
         ActivityManager am =
                 (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
         ConfigurationInfo info = am.getDeviceConfigurationInfo();
         final int glVersion = (info.reqGlEsVersion & 0xffff0000) >> 16;
         new Thread() {
-          public void run() {
-            runIterations(glVersion);
-          }
+            public void run() {
+                runIterations(glVersion);
+            }
         }.start();
 
         Configuration con = getResources().getConfiguration();
diff --git a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoInstrument.java b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoInstrument.java
index 29b29bf..cdf1df3 100644
--- a/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoInstrument.java
+++ b/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/DeviceInfoInstrument.java
@@ -60,7 +60,6 @@
 
     @Override
     public void onStart() {
-
         addResult(BUILD_ID, Build.ID);
         addResult(PRODUCT_NAME, Build.PRODUCT);
         addResult(BUILD_DEVICE, Build.DEVICE);
diff --git a/tools/device-setup/TestDeviceSetup/src/android/tests/util/DisableKeyguardReceiver.java b/tools/device-setup/TestDeviceSetup/src/android/tests/util/DisableKeyguardReceiver.java
deleted file mode 100644
index 3e5012d..0000000
--- a/tools/device-setup/TestDeviceSetup/src/android/tests/util/DisableKeyguardReceiver.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2009 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.tests.util;
-
-import android.app.KeyguardManager;
-import android.content.BroadcastReceiver;
-import android.content.Context;
-import android.content.Intent;
-
-/**
- * A utility receiver to disable the keyguard on devices.
- * Intended to be used so UI related tests can be executed successfully.
- */
-public class DisableKeyguardReceiver extends BroadcastReceiver {
-
-    @Override
-    public void onReceive(Context context, Intent intent) {
-        KeyguardManager keyguardManager =
-            (KeyguardManager) context.getSystemService(Context.KEYGUARD_SERVICE);
-        keyguardManager.newKeyguardLock("cts").disableKeyguard();
-    }
-}
diff --git a/tools/tradefed-host/src/com/android/cts/tradefed/build/CtsBuildProvider.java b/tools/tradefed-host/src/com/android/cts/tradefed/build/CtsBuildProvider.java
index 59d966e..103ba6e 100644
--- a/tools/tradefed-host/src/com/android/cts/tradefed/build/CtsBuildProvider.java
+++ b/tools/tradefed-host/src/com/android/cts/tradefed/build/CtsBuildProvider.java
@@ -31,7 +31,7 @@
     @Option(name="cts-install-path", description="the path to the cts installation to use")
     private String mCtsRootDirPath = System.getProperty("CTS_ROOT");
 
-    public static final String CTS_BUILD_VERSION = "4.4_r1";
+    public static final String CTS_BUILD_VERSION = "4.4_r1.95";
 
     /**
      * {@inheritDoc}
diff --git a/tools/tradefed-host/src/com/android/cts/tradefed/result/CtsXmlResultReporter.java b/tools/tradefed-host/src/com/android/cts/tradefed/result/CtsXmlResultReporter.java
index 186d362..6643934 100644
--- a/tools/tradefed-host/src/com/android/cts/tradefed/result/CtsXmlResultReporter.java
+++ b/tools/tradefed-host/src/com/android/cts/tradefed/result/CtsXmlResultReporter.java
@@ -58,7 +58,7 @@
     private static final String LOG_TAG = "CtsXmlResultReporter";
 
     static final String TEST_RESULT_FILE_NAME = "testResult.xml";
-    private static final String CTS_RESULT_FILE_VERSION = "1.14";
+    private static final String CTS_RESULT_FILE_VERSION = "4.4";
     private static final String[] CTS_RESULT_RESOURCES = {"cts_result.xsl", "cts_result.css",
         "logo.gif", "newrule-green.png"};
 
diff --git a/tools/utils/rm_dup_holo_imgs.py b/tools/utils/rm_dup_holo_imgs.py
new file mode 100755
index 0000000..2464d0b
--- /dev/null
+++ b/tools/utils/rm_dup_holo_imgs.py
@@ -0,0 +1,70 @@
+#!/usr/bin/env python
+#
+# Copyright (C) 2014 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.
+#
+import hashlib
+import os
+import subprocess
+import sys
+
+densities = [
+    "ldpi",
+    "mdpi",
+    "tvdpi",
+    "hdpi",
+    "xhdpi",
+    "400dpi",
+    "xxhdpi",
+    "xxxhdpi"
+]
+
+# A script to find holo images which are duplicated in the landscape and
+# portrait folder. The landscape images will then be deleted as Android will
+# look up landscape resources in the portrait folder if it doesn't exist in the
+# landscape folder. This will reduce the size of the Holo test case.
+def main(argv):
+  run(True)
+  run(False)
+
+def run(sw):
+  for density in densities:
+    portDir = getDirName(density, sw, False)
+    landDir = getDirName(density, sw, True)
+    portrait = getAllHashes(portDir)
+    landscape = getAllHashes(landDir)
+    for f in portrait:
+      if f in landscape and landscape[f] == portrait[f]:
+        subprocess.call(["rm", landDir + "/" + f])
+
+def getAllHashes(dirName):
+  files = {}
+  for f in os.listdir(dirName):
+    if f.endswith(".png"):
+      files[f] = getHash(open(dirName + "/" + f, 'rb'))
+  return files
+
+def getHash(f):
+  return hashlib.sha1(f.read()).hexdigest()
+
+def getDirName(density, sw, land):
+  name = "drawable-"
+  if sw:
+    name += "sw600dp-"
+  if land:
+    name += "land-"
+  return name + density
+
+if __name__ == '__main__':
+  main(sys.argv)